/**
 * Minh Phát Dallas Hotel — luxury theme styles
 * Palette: forest green #073b2d, gold #f2bd3e / #d4a62a, cream #f7f3eb
 */

/* ==========================================================================
   Design tokens
   ========================================================================== */

:root {
	--mph-color-primary: #073b2d;
	--mph-color-primary-dark: #03281f;
	--mph-color-secondary: #d4a62a;
	--mph-color-accent: #f2bd3e;
	--mph-color-background: #f7f3eb;
	--mph-color-surface: #ffffff;
	--mph-color-text: #1d2a24;
	--mph-color-muted: #6f756f;
	--mph-color-border: #ded7ca;
	--mph-container-max: 1320px;
	--mph-header-height: 92px;
	--mph-radius-sm: 8px;
	--mph-radius: 12px;
	--mph-radius-lg: 16px;
	--mph-shadow-sm: 0 4px 20px rgba(3, 40, 31, 0.08);
	--mph-shadow-md: 0 12px 40px rgba(3, 40, 31, 0.12);
	--mph-shadow-booking: 0 16px 48px rgba(3, 40, 31, 0.14);
	--mph-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
	--mph-font-body: Montserrat, "Helvetica Neue", Arial, sans-serif;
	--mph-font-script: "Playfair Display", Georgia, serif;
	--mph-transition: 0.3s ease;
}

/* ==========================================================================
   Base & layout
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.mph-theme {
	margin: 0;
	font-family: var(--mph-font-body);
	font-size: 1rem;
	color: var(--mph-color-text);
	background: var(--mph-color-background);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--mph-transition), opacity var(--mph-transition), border-color var(--mph-transition);
}

.mph-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.mph-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 0.75rem 1rem;
	background: var(--mph-color-primary);
	color: #fff;
	border-radius: var(--mph-radius-sm);
}

.mph-skip-link:focus {
	left: 1rem;
	top: 1rem;
}

.mph-container {
	width: min(var(--mph-container-max), calc(100% - 64px));
	margin-inline: auto;
}

.mph-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.mph-main {
	flex: 1;
}

.mph-section {
	padding: 80px 0;
}

.mph-section--page-header {
	padding-top: calc(var(--mph-header-height) + 48px);
	padding-bottom: 48px;
	background: var(--mph-color-surface);
	border-bottom: 1px solid var(--mph-color-border);
}

.mph-is-front-page .mph-main > .mph-section:first-of-type,
.mph-is-front-page .mph-main > .mph-hero:first-child {
	padding-top: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.mph-heading {
	font-family: var(--mph-font-heading);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 1rem;
	color: var(--mph-color-primary-dark);
}

.mph-heading--page {
	font-size: clamp(2rem, 4vw, 3rem);
}

.mph-heading--section {
	font-size: clamp(1.75rem, 3vw, 2.375rem);
}

.mph-heading--subsection {
	font-size: 1.35rem;
}

.mph-heading--offer {
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #fff;
}

.mph-muted {
	color: var(--mph-color-muted);
}

.mph-section__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mph-color-secondary);
	margin: 0 0 0.75rem;
}

.mph-section__eyebrow--light {
	color: var(--mph-color-accent);
}

.mph-section__header {
	margin-bottom: 2.5rem;
}

.mph-section__header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.mph-section__header--center {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}

.mph-section__link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--mph-color-primary);
	white-space: nowrap;
}

.mph-section__link:hover {
	color: var(--mph-color-secondary);
}

.mph-section__actions {
	margin-top: 2.5rem;
	text-align: center;
}

.mph-demo-note {
	font-size: 0.8125rem;
	color: var(--mph-color-muted);
	margin: 0 0 1.25rem;
	font-style: italic;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.mph-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 14px 22px;
	border-radius: var(--mph-radius);
	font-family: var(--mph-font-body);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--mph-transition), color var(--mph-transition), border-color var(--mph-transition), transform var(--mph-transition), box-shadow var(--mph-transition);
}

.mph-btn:hover {
	transform: translateY(-1px);
}

.mph-btn--primary {
	background: var(--mph-color-accent);
	color: var(--mph-color-primary-dark);
	border-color: var(--mph-color-accent);
}

.mph-btn--primary:hover {
	background: var(--mph-color-secondary);
	border-color: var(--mph-color-secondary);
	color: #fff;
}

.mph-btn--secondary {
	background: var(--mph-color-primary);
	color: #fff;
	border-color: var(--mph-color-primary);
}

.mph-btn--secondary:hover {
	background: var(--mph-color-primary-dark);
	border-color: var(--mph-color-primary-dark);
	color: #fff;
}

.mph-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.85);
}

.mph-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: #fff;
}

.mph-btn--outline {
	background: transparent;
	color: var(--mph-color-primary);
	border-color: var(--mph-color-primary);
}

.mph-btn--outline:hover {
	background: var(--mph-color-primary);
	color: #fff;
}

.mph-btn--outline-gold {
	background: transparent;
	color: var(--mph-color-primary-dark);
	border-color: var(--mph-color-secondary);
	padding: 12px 20px;
	font-size: 13px;
}

.mph-btn--outline-gold:hover {
	background: var(--mph-color-secondary);
	color: #fff;
	border-color: var(--mph-color-secondary);
}

.mph-btn--gold {
	background: var(--mph-color-secondary);
	color: var(--mph-color-primary-dark);
	border-color: var(--mph-color-secondary);
}

.mph-btn--gold:hover {
	background: var(--mph-color-accent);
	border-color: var(--mph-color-accent);
}

.mph-btn:focus-visible,
.mph-nav a:focus-visible,
.mph-footer a:focus-visible,
.mph-nav-toggle:focus-visible,
.mph-slider__btn:focus-visible,
.mph-gallery-mosaic__item:focus-visible,
.mph-gallery-grid__item:focus-visible {
	outline: 2px solid var(--mph-color-accent);
	outline-offset: 3px;
}

/* ==========================================================================
   Site brand / wordmark
   ========================================================================== */

.mph-site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.mph-site-brand--wordmark {
	align-items: center;
}

.mph-site-brand__mark {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: linear-gradient(145deg, var(--mph-color-accent), var(--mph-color-secondary));
	color: var(--mph-color-primary-dark);
	font-family: var(--mph-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(212, 166, 42, 0.35);
}

.mph-site-brand__text {
	display: flex;
	flex-direction: column;
	gap: 1px;
	line-height: 1.1;
}

.mph-site-brand__line {
	font-family: var(--mph-font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.mph-site-brand__line--sub {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	color: var(--mph-color-accent);
}

.mph-site-brand__img,
.mph-header .custom-logo,
.mph-footer .custom-logo {
	max-height: 72px;
	width: auto;
}

.mph-footer .mph-site-brand__img,
.mph-footer .custom-logo {
	max-height: 96px;
}

.mph-header__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.mph-footer__brand {
	margin-bottom: 0.35rem;
}

.mph-footer__brand .mph-site-brand,
.mph-footer__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

/* ==========================================================================
   Header
   ========================================================================== */

.mph-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--mph-header-height);
	color: #fff;
	transition: background var(--mph-transition), box-shadow var(--mph-transition);
}

.mph-header--transparent {
	background: transparent;
	box-shadow: none;
}

.mph-header--scrolled {
	background: var(--mph-color-primary);
	box-shadow: 0 4px 24px rgba(3, 40, 31, 0.28);
}

.mph-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 2rem;
	height: var(--mph-header-height);
}

.mph-nav--desktop {
	justify-self: center;
}

.mph-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mph-nav__list a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	padding: 4px 0;
	position: relative;
}

.mph-nav__list a:hover {
	color: var(--mph-color-accent);
}

.mph-nav__list .current-menu-item > a,
.mph-nav__list .current_page_item > a,
.mph-nav__list .current-menu-ancestor > a {
	color: #fff;
}

.mph-nav__list .current-menu-item > a::after,
.mph-nav__list .current_page_item > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: var(--mph-color-accent);
	border-radius: 1px;
}

.mph-header__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.mph-header__hotline {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.3;
}

.mph-header__hotline-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(242, 189, 62, 0.15);
	color: var(--mph-color-accent);
}

.mph-header__hotline-text {
	display: flex;
	flex-direction: column;
}

.mph-header__hotline-label {
	font-size: 0.6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.85;
}

.mph-header__hotline-number {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
}

.mph-header__cta {
	white-space: nowrap;
	flex-shrink: 0;
}

.mph-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.mph-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
	transition: transform var(--mph-transition), opacity var(--mph-transition);
}

.mph-nav-toggle__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* Offcanvas mobile nav */
.mph-offcanvas {
	position: fixed;
	inset: 0;
	z-index: 1100;
	pointer-events: none;
}

.mph-offcanvas.is-open {
	pointer-events: auto;
}

.mph-offcanvas__backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(3, 40, 31, 0.6);
	opacity: 0;
	transition: opacity var(--mph-transition);
	cursor: pointer;
}

.mph-offcanvas.is-open .mph-offcanvas__backdrop {
	opacity: 1;
}

.mph-offcanvas__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(320px, 88vw);
	height: 100%;
	background: var(--mph-color-primary-dark);
	color: #fff;
	padding: 1.5rem;
	transform: translateX(100%);
	transition: transform var(--mph-transition);
	overflow-y: auto;
}

.mph-offcanvas.is-open .mph-offcanvas__panel {
	transform: translateX(0);
}

.mph-offcanvas__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.75rem;
	cursor: pointer;
	line-height: 1;
}

.mph-nav__list--mobile {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 3rem;
}

.mph-nav__list--mobile a {
	font-size: 1rem;
	text-transform: none;
}

.mph-offcanvas__hotline,
.mph-offcanvas__cta {
	display: block;
	margin-top: 1.5rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.mph-hero {
	position: relative;
	min-height: 720px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.mph-hero__media {
	position: absolute;
	inset: 0;
}

.mph-hero__picture,
.mph-hero__image {
	width: 100%;
	height: 100%;
}

.mph-hero__image {
	object-fit: cover;
	object-position: center right;
}

.mph-hero__fallback {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, rgba(242, 189, 62, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 50% 80% at 20% 80%, rgba(7, 59, 45, 0.6) 0%, transparent 50%),
		linear-gradient(135deg, #03281f 0%, #073b2d 35%, #0a4d3a 65%, #03281f 100%);
}

.mph-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(3, 42, 32, 0.96) 0%,
		rgba(3, 42, 32, 0.82) 32%,
		rgba(3, 42, 32, 0.3) 62%,
		rgba(3, 42, 32, 0.08) 100%
	);
}

.mph-hero__content {
	position: relative;
	z-index: 3;
	max-width: 600px;
	padding: calc(var(--mph-header-height) + 120px) 0 80px;
}

.mph-hero__tagline {
	font-family: var(--mph-font-script);
	font-size: 1.125rem;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--mph-color-accent);
	margin: 0 0 1rem;
}

.mph-hero__title {
	font-family: var(--mph-font-heading);
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 600;
	line-height: 1;
	margin: 0 0 1rem;
}

.mph-hero__title-line {
	display: block;
	color: #fff;
}

.mph-hero__title-line--accent {
	color: var(--mph-color-accent);
}

.mph-hero__stars {
	color: var(--mph-color-accent);
	font-size: 1rem;
	margin-bottom: 1.25rem;
	letter-spacing: 0.2em;
}

.mph-hero__subtitle {
	font-size: 1rem;
	max-width: 480px;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 2rem;
	line-height: 1.7;
}

.mph-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* ==========================================================================
   Booking bar & form
   ========================================================================== */

.mph-booking-bar {
	position: relative;
	z-index: 5;
	margin-top: -56px;
	padding-bottom: 0;
}

.mph-booking-bar__panel {
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius-lg);
	box-shadow: var(--mph-shadow-booking);
	padding: 22px 28px;
}

.mph-booking-form {
	margin: 0;
}

.mph-booking-form__bar {
	display: grid;
	grid-template-columns: 1.15fr 1.15fr 0.8fr 0.9fr 1fr;
	align-items: stretch;
	gap: 0;
}

.mph-booking-form__field {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	padding: 8px 20px;
	border-right: 1px solid var(--mph-color-border);
	min-width: 0;
}

.mph-booking-form__field:first-child {
	padding-left: 0;
}

.mph-booking-form__label {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mph-color-muted);
}

.mph-booking-form__input {
	width: 100%;
	padding: 4px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	font-family: var(--mph-font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--mph-color-text);
	appearance: none;
}

.mph-booking-form__input:focus {
	outline: none;
}

.mph-booking-form__field:focus-within {
	background: rgba(247, 243, 235, 0.5);
}

.mph-booking-form__actions {
	display: flex;
	align-items: stretch;
	padding-left: 12px;
	border-right: 0;
}

.mph-booking-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 100%;
	padding: 14px 22px;
	border: 0;
	border-radius: var(--mph-radius);
	background: var(--mph-color-primary);
	color: #fff;
	font-family: var(--mph-font-body);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--mph-transition);
	white-space: nowrap;
}

.mph-booking-form__submit:hover {
	background: var(--mph-color-primary-dark);
}

.mph-booking-form__expand {
	margin-top: 12px;
}

.mph-booking-form__toggle {
	background: none;
	border: none;
	color: var(--mph-color-primary);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.mph-booking-form__toggle:hover {
	color: var(--mph-color-secondary);
}

.mph-booking-form__contact {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--mph-color-border);
}

.mph-booking-form__contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.mph-booking-form__contact .mph-booking-form__field {
	border-right: 0;
	padding: 0;
}

.mph-booking-form__contact .mph-booking-form__field label {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--mph-color-muted);
}

.mph-booking-form__contact .mph-booking-form__field input,
.mph-booking-form__contact .mph-booking-form__field textarea {
	padding: 10px 14px;
	border: 1px solid var(--mph-color-border);
	border-radius: var(--mph-radius-sm);
	font: inherit;
	background: var(--mph-color-background);
}

.mph-booking-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.mph-booking-form__message {
	margin-top: 12px;
	padding: 12px 16px;
	border-radius: var(--mph-radius-sm);
	font-size: 0.875rem;
}

.mph-booking-form__message--success {
	background: rgba(7, 59, 45, 0.1);
	color: var(--mph-color-primary);
}

.mph-booking-form__message--error {
	background: rgba(180, 40, 40, 0.08);
	color: #9b1c1c;
}

/* Plugin booking form inside theme booking bar */
.mph-core-component .mph-booking-form,
.mph-booking-bar__panel .mph-booking-form {
	max-width: none;
}

.mph-core-component .mph-booking-form__bar {
	display: grid;
	grid-template-columns: 1.15fr 1.15fr 0.8fr 0.9fr 1fr;
	align-items: stretch;
}

/* Legacy grid fallback for sidebar cards */
.mph-booking-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.mph-room-booking-card .mph-booking-form__bar {
	grid-template-columns: 1fr;
}

.mph-room-booking-card .mph-booking-form__field {
	border-right: 0;
	padding: 0;
}

.mph-room-booking-card .mph-booking-form__field input,
.mph-room-booking-card .mph-booking-form__input {
	padding: 10px 14px;
	border: 1px solid var(--mph-color-border);
	border-radius: var(--mph-radius-sm);
	background: var(--mph-color-background);
}

.mph-room-booking-card .mph-booking-form__actions {
	padding-left: 0;
}

/* ==========================================================================
   About section
   ========================================================================== */

.mph-about {
	display: grid;
	grid-template-columns: 0.95fr 1.2fr;
	gap: 48px;
	align-items: center;
}

.mph-about__text p {
	margin: 0 0 1.25rem;
	color: var(--mph-color-muted);
	line-height: 1.75;
}

.mph-about__features {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: grid;
	gap: 0.875rem;
}

.mph-about__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 500;
	font-size: 0.9375rem;
}

.mph-about__feature-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(212, 166, 42, 0.15);
	border: 1.5px solid var(--mph-color-secondary);
	position: relative;
}

.mph-about__feature-icon::after {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background: var(--mph-color-secondary);
}

.mph-about-gallery {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	position: relative;
	min-height: 480px;
	align-items: stretch;
}

.mph-about-gallery__main,
.mph-about-gallery__small {
	margin: 0;
	min-height: 0;
	height: 100%;
	border-radius: var(--mph-radius);
	overflow: hidden;
	background: var(--mph-color-surface-muted, #e8efe9);
}

.mph-about-gallery__main {
	grid-row: 1 / -1;
}

.mph-about-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mph-about__badge {
	position: absolute;
	bottom: 24px;
	left: -20px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 20px 24px;
	background: var(--mph-color-primary-dark);
	color: #fff;
	border-radius: var(--mph-radius);
	box-shadow: var(--mph-shadow-md);
	text-align: center;
}

.mph-about__badge-number {
	font-family: var(--mph-font-heading);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--mph-color-accent);
}

.mph-about__badge-text {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 4px;
}

/* ==========================================================================
   Amenities bar
   ========================================================================== */

.mph-amenities-bar {
	background: var(--mph-color-primary);
	color: #fff;
	padding: 0;
}

.mph-amenities-bar__list {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 28px 0;
	min-height: 110px;
	align-items: center;
}

.mph-amenities-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: center;
}

.mph-amenities-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 1.125rem;
	color: var(--mph-color-accent);
}

.mph-amenities-bar__icon::before {
	display: block;
	line-height: 1;
}

.mph-amenities-bar__icon--wifi::before { content: "⌁"; }
.mph-amenities-bar__icon--restaurant::before { content: "◈"; }
.mph-amenities-bar__icon--parking::before { content: "P"; font-weight: 700; font-size: 0.875rem; }
.mph-amenities-bar__icon--breakfast::before { content: "☕"; }
.mph-amenities-bar__icon--coffee::before { content: "☕"; }
.mph-amenities-bar__icon--reception::before { content: "◉"; }
.mph-amenities-bar__icon--shuttle::before { content: "✈"; }
.mph-amenities-bar__icon--star::before { content: "★"; }

.mph-amenities-bar__label {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   Rooms grid & cards
   ========================================================================== */

.mph-room-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.mph-room-card {
	display: flex;
	flex-direction: column;
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius);
	overflow: hidden;
	box-shadow: var(--mph-shadow-sm);
	height: 100%;
	transition: transform var(--mph-transition), box-shadow var(--mph-transition);
}

.mph-room-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mph-shadow-md);
}

.mph-room-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.mph-room-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--mph-transition);
}

.mph-room-card:hover .mph-room-card__image {
	transform: scale(1.04);
}

.mph-room-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
}

.mph-room-card__title {
	font-family: var(--mph-font-heading);
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

.mph-room-card__title a {
	color: var(--mph-color-primary-dark);
}

.mph-room-card__title a:hover {
	color: var(--mph-color-secondary);
}

.mph-room-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	font-size: 0.8125rem;
	color: var(--mph-color-muted);
}

.mph-room-card__excerpt {
	font-size: 0.875rem;
	color: var(--mph-color-muted);
	margin: 0 0 1rem;
	flex: 1;
	line-height: 1.6;
}

.mph-room-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--mph-color-border);
}

.mph-room-card__price {
	margin: 0;
	font-size: 0.8125rem;
	color: var(--mph-color-muted);
}

.mph-room-card__price strong {
	display: block;
	font-family: var(--mph-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--mph-color-secondary);
}

.mph-room-card__price-unit {
	font-size: 0.8125rem;
}

/* ==========================================================================
   Offer banner
   ========================================================================== */

.mph-section--offer {
	padding-top: 48px;
	padding-bottom: 48px;
}

.mph-offer-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 140px;
	padding: 32px 40px;
	border-radius: var(--mph-radius);
	background-color: var(--mph-color-primary-dark);
	background-image: var(--mph-offer-bg, none);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.mph-offer-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 40, 31, 0.88) 0%, rgba(3, 40, 31, 0.65) 50%, rgba(3, 40, 31, 0.45) 100%);
}

.mph-offer-banner__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.mph-offer-banner__text {
	margin: 0;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
}

.mph-offer-banner__cta {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

/* ==========================================================================
   Social proof — compact mosaic + testimonials
   ========================================================================== */

.mph-social-proof {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 32px;
	align-items: start;
}

.mph-social-proof__gallery,
.mph-social-proof__reviews {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.mph-social-proof__title {
	margin: 0 0 1rem;
	font-family: var(--mph-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--mph-color-secondary);
}

.mph-gallery-mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 12px;
	height: 320px;
	margin-bottom: 1rem;
}

.mph-gallery-mosaic__item {
	border: 0;
	padding: 0;
	border-radius: var(--mph-radius);
	overflow: hidden;
	cursor: pointer;
	background: var(--mph-color-border);
	min-width: 0;
	min-height: 0;
	position: relative;
}

.mph-gallery-mosaic__item--0,
.mph-gallery-mosaic__item--1,
.mph-gallery-mosaic__item--2,
.mph-gallery-mosaic__item--3 {
	grid-column: auto;
	grid-row: auto;
}

.mph-gallery-mosaic__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--mph-transition);
}

.mph-gallery-mosaic__item:hover img {
	transform: scale(1.05);
}

.mph-social-proof__gallery-cta {
	align-self: flex-start;
	padding: 10px 18px;
	font-size: 0.8125rem;
}

.mph-testimonial-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 300px;
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius);
	padding: 1.5rem 1.5rem 1.15rem;
	box-shadow: var(--mph-shadow-sm);
}

.mph-testimonial__quote-mark {
	display: block;
	font-family: var(--mph-font-heading);
	font-size: 3.25rem;
	line-height: 0.55;
	color: var(--mph-color-secondary);
	opacity: 0.85;
	margin-bottom: 0.5rem;
}

.mph-slider__track {
	position: relative;
	flex: 1;
	min-height: 0;
}

.mph-slider__slide {
	display: block;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	inset: 0;
	pointer-events: none;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.mph-slider__slide.is-active {
	display: flex;
	flex-direction: column;
	opacity: 1;
	visibility: visible;
	position: relative;
	pointer-events: auto;
}

.mph-testimonial__quote {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--mph-color-text);
}

.mph-testimonial__quote p {
	margin: 0;
}

.mph-testimonial__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.mph-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.mph-testimonial__author {
	margin: 0;
}

.mph-testimonial__author strong {
	display: block;
	font-size: 0.875rem;
	color: var(--mph-color-primary-dark);
}

.mph-testimonial__author span:not(.mph-testimonial__stars) {
	display: block;
	font-size: 0.75rem;
	color: var(--mph-color-muted);
}

.mph-testimonial__stars {
	display: block;
	margin-top: 2px;
	color: var(--mph-color-secondary);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
}

.mph-slider__controls {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 0.85rem;
}

.mph-slider__btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--mph-color-border);
	background: var(--mph-color-surface);
	color: var(--mph-color-primary);
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	transition: background var(--mph-transition), color var(--mph-transition), border-color var(--mph-transition);
}

.mph-slider__btn:hover {
	background: var(--mph-color-primary);
	color: #fff;
	border-color: var(--mph-color-primary);
}

/* Lightbox */
.mph-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(3, 40, 31, 0.92);
	padding: 2rem;
}

.mph-lightbox[hidden] {
	display: none;
}

.mph-lightbox__close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 48px;
	height: 48px;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 2rem;
	border-radius: 50%;
	cursor: pointer;
	line-height: 1;
}

.mph-lightbox__stage {
	max-width: min(1200px, 92vw);
	max-height: 85vh;
}

.mph-lightbox__image {
	max-width: 100%;
	max-height: 85vh;
	border-radius: var(--mph-radius-sm);
	box-shadow: var(--mph-shadow-md);
}

/* Legacy gallery grid */
.mph-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.mph-gallery-grid__item {
	border: 0;
	padding: 0;
	border-radius: var(--mph-radius);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1;
	background: var(--mph-color-border);
}

.mph-gallery-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mph-gallery-grid__item:nth-child(1) {
	grid-column: span 2;
	grid-row: span 2;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.mph-footer {
	background: var(--mph-color-primary-dark);
	color: rgba(255, 255, 255, 0.88);
	margin-top: auto;
}

.mph-footer .mph-site-brand__line {
	color: #fff;
}

.mph-footer .mph-site-brand__line--sub {
	color: var(--mph-color-accent);
}

.mph-footer__grid {
	display: grid;
	grid-template-columns: 1.45fr 0.95fr 1.15fr 1.25fr;
	gap: 36px 40px;
	padding: 64px 0 8px;
}

.mph-footer__about {
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
	margin: 1rem 0;
}

.mph-footer__title {
	font-family: var(--mph-font-heading);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--mph-color-accent);
	margin: 0 0 1rem;
}

.mph-footer__list,
.mph-footer__contact,
.mph-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mph-footer__list li,
.mph-footer__contact li,
.mph-footer__social li {
	margin-bottom: 0.5rem;
}

.mph-footer__list a,
.mph-footer__contact a,
.mph-footer__social a {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.875rem;
}

.mph-footer__list a:hover,
.mph-footer__contact a:hover,
.mph-footer__social a:hover {
	color: var(--mph-color-accent);
}

.mph-footer__contact-label {
	display: block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--mph-color-accent);
	margin-bottom: 2px;
}

.mph-footer__map {
	background: rgba(255, 255, 255, 0.04);
	padding: 6px;
	border: 1px solid rgba(201, 168, 76, 0.28);
	overflow: hidden;
}

.mph-footer__map iframe {
	display: block;
	width: 100%;
	height: 180px;
	border: 0;
}

.mph-footer__bottom {
	border-top: 1px solid rgba(201, 168, 76, 0.16);
	margin-top: 48px;
	padding: 22px 0;
}

.mph-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

.mph-footer__copyright {
	margin: 0;
	width: 100%;
	text-align: center;
}

/* ==========================================================================
   Breadcrumbs & pagination
   ========================================================================== */

.mph-breadcrumbs {
	margin-bottom: 1rem;
	font-size: 0.8125rem;
}

.mph-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--mph-color-muted);
}

.mph-breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin-left: 0.35rem;
	opacity: 0.5;
}

.mph-breadcrumbs a {
	color: var(--mph-color-primary);
}

.mph-breadcrumbs a:hover {
	color: var(--mph-color-secondary);
}

.mph-pagination {
	margin-top: 2.5rem;
}

.mph-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.mph-pagination a,
.mph-pagination span {
	padding: 0.5rem 0.85rem;
	border-radius: var(--mph-radius-sm);
	border: 1px solid var(--mph-color-border);
	text-decoration: none;
	font-size: 0.875rem;
}

.mph-pagination .current {
	background: var(--mph-color-primary);
	color: #fff;
	border-color: var(--mph-color-primary);
}

/* ==========================================================================
   Single room & inner pages
   ========================================================================== */

.mph-room-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.mph-room-gallery__item {
	border: 0;
	padding: 0;
	border-radius: var(--mph-radius-sm);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4 / 3;
}

.mph-room-gallery__item--featured {
	grid-column: span 2;
	grid-row: span 2;
}

.mph-room-gallery__item img,
.mph-room-gallery__featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mph-room-single__layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 2.5rem;
	align-items: start;
}

.mph-room-single__meta-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	padding: 1rem 1.25rem;
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius);
	border: 1px solid var(--mph-color-border);
	margin-bottom: 2rem;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--mph-color-primary);
}

.mph-room-single__amenities-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.5rem 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mph-room-single__amenities-list li {
	padding-left: 1.25rem;
	position: relative;
	font-size: 0.9375rem;
}

.mph-room-single__amenities-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--mph-color-secondary);
}

.mph-room-booking-card {
	position: sticky;
	top: calc(var(--mph-header-height) + 1.5rem);
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--mph-shadow-md);
}

.mph-room-booking-card__price {
	text-align: center;
	margin: 0 0 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--mph-color-border);
}

.mph-room-booking-card__price strong {
	display: block;
	font-family: var(--mph-font-heading);
	font-size: 1.75rem;
	color: var(--mph-color-secondary);
}

.mph-amenities-grid,
.mph-offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.mph-amenity-card,
.mph-offer-card {
	background: var(--mph-color-surface);
	border-radius: var(--mph-radius);
	padding: 1.5rem;
	border: 1px solid var(--mph-color-border);
	box-shadow: var(--mph-shadow-sm);
}

.mph-restaurant,
.mph-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}

.mph-restaurant__placeholder {
	aspect-ratio: 4 / 3;
	border-radius: var(--mph-radius);
	background: linear-gradient(135deg, #d9d2c6, #f0ebe2);
}

.mph-contact__map-embed iframe {
	width: 100%;
	min-height: 320px;
	border: 0;
	border-radius: var(--mph-radius);
}

.mph-content--page {
	margin-top: 2rem;
}

.mph-post-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mph-post-list li {
	padding: 1rem 0;
	border-bottom: 1px solid var(--mph-color-border);
}
