/* ═══════════════════════════════════════════════════
   Material Design 3 — Luxury Dark Hotel Casino Theme
   Inspired by: imperioncrownhotelcasinode.mhfxr_com
                immaculateimporteager.mhfxr_com
   ═══════════════════════════════════════════════════ */

:root {
  /* MD3 Color Tokens — improved contrast */
  --md-sys-color-primary:              #C58A3A;
  --md-sys-color-on-primary:           #1A0F00;
  --md-sys-color-primary-container:    #2A1A00;
  --md-sys-color-on-primary-container: #F0C27A;
  --md-sys-color-surface:              #0D0B08;
  --md-sys-color-on-surface:           #F5EDD8;
  --md-sys-color-surface-variant:      #18140F;
  --md-sys-color-outline:              #4A4035;
  --md-sys-color-background:           #0A0908;
  --md-sys-color-on-background:        #F5EDD8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Roboto', system-ui, sans-serif;

  /* Layout */
  --section-padding: 100px 0;
  --container-max:   1240px;

  /* Gold gradient — richer amber */
  --gold: linear-gradient(135deg, #A87030 0%, #F0C27A 50%, #A87030 100%);

  /* Surface palette — defaults, overridden per-build via PALETTE_STYLE injection */
  --c-bg: #0A0908;
  --c-s1: #0D0B08;
  --c-s2: #18140F;
  --c-s3: #1A1814;
  --c-s4: #201A10;
  --gold-flat: #C58A3A;

  /* Transitions */
  --ease: all 0.28s ease;
  --ease-transform: transform 0.28s ease;
}

/* ── Buttons ──────────────────────────────────────── */
.mhfxr_btn-filled,
.mhfxr_btn-outlined,
.mhfxr_btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: var(--ease);
  border: none;
}
.mhfxr_btn-filled {
  background: var(--gold-flat);
  color: var(--md-sys-color-on-primary, #1A0F00);
}
.mhfxr_btn-filled:hover { filter: brightness(1.12); transform: translateY(-1px); }
.mhfxr_btn-filled:active { transform: scale(0.97); }

.mhfxr_btn-outlined {
  background: transparent;
  color: var(--gold-flat);
  border: 1px solid var(--gold-flat);
}
.mhfxr_btn-outlined:hover { background: rgba(197,138,58,0.1); }

.mhfxr_btn-text {
  background: transparent;
  color: var(--gold-flat);
  padding: 10px 12px;
}
.mhfxr_btn-text:hover { background: rgba(197,138,58,0.08); }

/* ── Cards ────────────────────────────────────────── */
.mhfxr_card-elevated {
  background: var(--c-s2);
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.28);
  overflow: hidden;
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--font-body);
  background: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  line-height: 1.7;
  overflow-x: hidden;
}
img   { display: block; width: 100%; height: 100%; object-fit: cover; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

.mhfxr_container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.mhfxr_section { padding: var(--section-padding); }

/* ── Typography helpers ───────────────────────────── */
.mhfxr_section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-flat);
  margin-bottom: 12px;
}
.mhfxr_section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #F5EDD8;
  margin-bottom: 20px;
}
.mhfxr_section-title.mhfxr_light { color: #fff; }
.mhfxr_section-subtitle {
  font-size: 1rem;
  color: #7A6E5E;
  max-width: 560px;
  margin: 0 auto;
}
.mhfxr_section-body {
  font-size: 1rem;
  color: #FFE4E1;
  max-width: 540px;
  line-height: 1.85;
}
.mhfxr_section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Scroll-reveal animations ─────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════ NAVIGATION */
.mhfxr_nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 20px 0;
  transition: var(--ease);
}
.mhfxr_nav-header.scrolled {
  background: rgba(10, 9, 8, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 138, 58, 0.18);
  padding: 12px 0;
}
.mhfxr_nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.mhfxr_nav-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}
.mhfxr_nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.mhfxr_nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: var(--ease);
  padding: 4px 0;
}
.mhfxr_nav-links a:hover { color: var(--gold-flat); }
.mhfxr_nav-right { display: flex; align-items: center; gap: 16px; }

/* Burger */
.mhfxr_nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mhfxr_nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-flat);
  transition: var(--ease);
}
.mhfxr_nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mhfxr_nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mhfxr_nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════ HERO */
.mhfxr_hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mhfxr_hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,9,8,0.78) 0%,
    rgba(10,9,8,0.38) 60%,
    rgba(10,9,8,0.68) 100%
  );
}
.mhfxr_hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 0 20px;
  animation: fadeInUp 0.9s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.mhfxr_hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-flat);
  margin-bottom: 20px;
}
.mhfxr_hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.mhfxr_hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.mhfxr_hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.mhfxr_hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.45);
  transition: var(--ease);
}
.mhfxr_hero-scroll:hover { color: var(--gold-flat); }
.mhfxr_scroll-arrow {
  display: block;
  font-size: 24px;
  animation: bounceY 2s ease-in-out infinite;
}
@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ══════════════════════════════════ HIGHLIGHTS STRIP */
.mhfxr_highlights-strip {
  background: var(--c-s1);
  border-top:    1px solid rgba(197, 138, 58, 0.18);
  border-bottom: 1px solid rgba(197, 138, 58, 0.18);
  padding: 48px 0;
}
.mhfxr_highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mhfxr_highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.mhfxr_highlight-icon {
  font-size: 1.8rem;
  color: var(--gold-flat);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.mhfxr_highlight-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #F5EDD8;
  margin-bottom: 6px;
}
.mhfxr_highlight-desc {
  font-size: 0.875rem;
  color: #7A6E5E;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════ ABOUT */
.mhfxr_about-section { background: var(--md-sys-color-surface-variant); }
.mhfxr_about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mhfxr_about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(197, 138, 58, 0.18);
}
.mhfxr_stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mhfxr_stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFE4E1;
  margin-top: 4px;
}
.mhfxr_about-image {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}

/* ═══════════════════════════════════════════ ROOMS */
.mhfxr_rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mhfxr_room-card {
  overflow: hidden;
  transition: var(--ease-transform);
  display: flex;
  flex-direction: column;
}
.mhfxr_room-card:hover { transform: translateY(-6px); }
.mhfxr_featured-card {
  --md-elevated-card-container-color: var(--c-s2);
  outline: 1px solid rgba(197, 138, 58, 0.35);
}
.mhfxr_room-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.mhfxr_room-image-wrap img { transition: transform 0.5s cubic-bezier(0.2,0,0,1); }
.mhfxr_room-card:hover .mhfxr_room-image-wrap img { transform: scale(1.06); }

.mhfxr_room-feature-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,9,8,0.78);
  border: 1px solid rgba(197,138,58,0.5);
  color: var(--gold-flat);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.mhfxr_room-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-flat);
  color: #1A0F00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.mhfxr_room-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.mhfxr_room-stars {
  font-size: 13px;
  color: var(--gold-flat);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.mhfxr_room-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #F5EDD8;
  margin-bottom: 10px;
}
.mhfxr_room-desc {
  font-size: 0.875rem;
  color: #FFE4E1;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.mhfxr_room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mhfxr_room-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-flat);
}
.mhfxr_room-price small {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: #FFE4E1;
}

/* ═══════════════════════════════════════════ CASINO */
.mhfxr_casino-section { padding: 0; }
.mhfxr_casino-bg {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.mhfxr_casino-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,9,8,0.94) 0%, rgba(10,9,8,0.68) 100%);
}
.mhfxr_casino-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: 640px;
}
.mhfxr_casino-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 560px;
}
.mhfxr_casino-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.mhfxr_casino-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-flat);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mhfxr_cf-icon { font-size: 28px; line-height: 1; }

/* ═══════════════════════════════════════════ DINING */
.mhfxr_dining-section { background: var(--md-sys-color-surface-variant); }
.mhfxr_dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mhfxr_dining-image {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}

/* ═══════════════════════════════════════ AMENITIES */
.mhfxr_amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mhfxr_amenity-card {
  background: var(--c-s2);
  border: 1px solid rgba(197, 138, 58, 0.1);
  border-radius: 22px;
  padding: 36px 24px;
  text-align: center;
  font-size: 1rem;
  color: #C4B498;
  transition: var(--ease);
  cursor: default;
}
.mhfxr_amenity-card:hover {
  border-color: rgba(197, 138, 58, 0.4);
  background: var(--c-s2);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(197,138,58,0.08);
}

/* ══════════════════════════════════ TESTIMONIALS */
.mhfxr_testimonials-section { background: var(--c-s1); }

.mhfxr_testimonial-card {
  background: var(--c-s2);
  border: 1px solid rgba(197, 138, 58, 0.14);
  border-radius: 22px;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--ease);
}
.mhfxr_testimonial-card:hover {
  border-color: rgba(197,138,58,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.mhfxr_testimonial-stars {
  font-size: 14px;
  color: var(--gold-flat);
  letter-spacing: 2px;
}
.mhfxr_testimonial-text {
  font-size: 1rem;
  color: #C4B498;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.mhfxr_testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(197,138,58,0.12);
}
.mhfxr_testimonial-name {
  font-weight: 600;
  color: #F5EDD8;
  font-size: 0.95rem;
}
.mhfxr_testimonial-location {
  font-size: 0.8rem;
  color: #FFE4E1;
  letter-spacing: 0.06em;
}

/* Swiper overrides */
.mhfxr_testimonials-swiper { padding-bottom: 48px !important; }
.swiper-pagination-bullet {
  background: #4A3A20;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--gold-flat);
}

/* ═══════════════════════════════════════════ GALLERY */
.mhfxr_gallery-section { background: var(--md-sys-color-surface-variant); }
.mhfxr_gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
}
.mhfxr_gallery-item          { overflow: hidden; border-radius: 12px; }
.mhfxr_gallery-item.mhfxr_item-tall { grid-row: 1 / 3; }
.mhfxr_gallery-item.mhfxr_item-wide { grid-column: 2 / 4; }
.mhfxr_gallery-item img { transition: transform 0.5s cubic-bezier(0.2,0,0,1); cursor: zoom-in; }
.mhfxr_gallery-item:hover img { transform: scale(1.07); }

/* ═══════════════════════════════════════════ CONTACT */
.mhfxr_contact-section { background: var(--md-sys-color-surface-variant); }
.mhfxr_contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mhfxr_contact-details { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.mhfxr_contact-item    { display: flex; align-items: center; gap: 16px; color: #C4B498; }
.mhfxr_contact-icon    { font-size: 20px; color: var(--gold-flat); flex-shrink: 0; width: 22px; text-align: center; }
.mhfxr_contact-item a:hover { color: var(--gold-flat); }
.mhfxr_contact-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.mhfxr_contact-form-wrap {
  padding: 32px;
  background: var(--c-s2);
  border: 1px solid rgba(74,146,200,0.22);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.mhfxr_contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mhfxr_contact-form input,
.mhfxr_contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(143,164,184,0.35);
  border-radius: 12px;
  background: var(--c-s1);
  color: #F2F7FA;
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.mhfxr_contact-form input {
  min-height: 52px;
}
.mhfxr_contact-form textarea {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
}
.mhfxr_contact-form input::placeholder,
.mhfxr_contact-form textarea::placeholder {
  color: #8FA4B8;
  opacity: 1;
}
.mhfxr_contact-form input:focus,
.mhfxr_contact-form textarea:focus {
  border-color: var(--gold-flat);
  background: #0D141D;
  box-shadow: 0 0 0 3px rgba(74,146,200,0.16);
}
.mhfxr_contact-form .mhfxr_btn-filled {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 46px;
  padding-inline: 28px;
}
/* Leaflet map */
.mhfxr_hotel-map {
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197,138,58,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

/* Custom gold pin */
.mhfxr_map-pin {
  width: 44px; height: 44px;
  background: var(--gold-flat);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1A0F00; font-size: 20px;
  box-shadow: 0 4px 20px rgba(197,138,58,0.6);
  border: 2px solid rgba(255,255,255,0.2);
}

/* Dark popup */
.leaflet-popup-content-wrapper {
  background: var(--c-s2) !important;
  border: 1px solid rgba(197,138,58,0.3) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6) !important;
  color: #EDE0D4 !important;
}
.leaflet-popup-content-wrapper strong { color: var(--gold-flat); }
.leaflet-popup-content-wrapper span   { font-size: 12px; color: #FFE4E1; }
.leaflet-popup-tip-container .leaflet-popup-tip { background: var(--c-s2) !important; }
.leaflet-popup-close-button { color: #FFE4E1 !important; }
.leaflet-popup-close-button:hover { color: var(--gold-flat) !important; }

/* Dark zoom controls */
.leaflet-bar a {
  background: var(--c-s2) !important;
  color: var(--gold-flat) !important;
  border-color: rgba(197,138,58,0.25) !important;
}
.leaflet-bar a:hover { background: #1F1A10 !important; }

/* Dark attribution */
.leaflet-control-attribution {
  background: rgba(10,9,8,0.75) !important;
  color: #3A3020 !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: #FFE4E1 !important; }

/* ═══════════════════════════════════════════ FOOTER */
.mhfxr_footer { background: var(--c-s1); border-top: 1px solid rgba(197,138,58,0.08); }
.mhfxr_footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.mhfxr_footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.mhfxr_footer-brand p  { font-size: 0.875rem; color: #FFE4E1; line-height: 1.65; max-width: 240px; }
.mhfxr_footer-links h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-flat);
  margin-bottom: 20px;
}
.mhfxr_footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.mhfxr_footer-links a  { font-size: 14px; color: #FFE4E1; transition: var(--ease); }
.mhfxr_footer-links a:hover { color: var(--gold-flat); }
.mhfxr_footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mhfxr_footer-bottom p  { font-size: 12px; color: #CFC6BA; }
.mhfxr_gambling-notice  { font-size: 11px !important; color: #FFE4E1 !important; }

/* ══════════════════════════════════ COOKIE BANNER */
.mhfxr_cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--c-s1);
  border-top: 1px solid rgba(197,138,58,0.35);
  padding: 16px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mhfxr_cookie-banner.hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.mhfxr_cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mhfxr_cookie-banner-text {
  flex: 1;
  font-size: 13px;
  color: #FFE4E1;
  line-height: 1.5;
  min-width: 240px;
}
.mhfxr_cookie-banner-text strong { color: #C4B498; }
.mhfxr_cookie-banner-text a { color: var(--gold-flat); text-decoration: underline; text-underline-offset: 3px; }
.mhfxr_cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.mhfxr_cookie-btn-accept,
.mhfxr_cookie-btn-reject {
  padding: 9px 20px;
  border: none;
  border-radius: 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--ease);
}
.mhfxr_cookie-btn-accept {
  background: var(--gold-flat);
  color: #1A0F00;
}
.mhfxr_cookie-btn-accept:hover { background: #D49B4A; }
.mhfxr_cookie-btn-reject {
  background: transparent;
  color: var(--gold-flat);
  border: 1px solid rgba(197,138,58,0.45);
}
.mhfxr_cookie-btn-reject:hover { border-color: var(--gold-flat); color: #F0C27A; }

/* ═══════════════════════════════ LEGAL / COMPLIANCE PAGES */
.mhfxr_legal-page {
  padding: 120px 0 100px;
  min-height: 80vh;
}
.mhfxr_legal-header {
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(197,138,58,0.15);
  padding-bottom: 32px;
}
.mhfxr_legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #F5EDD8;
  margin-bottom: 8px;
}
.mhfxr_legal-meta {
  font-size: 13px;
  color: #FFE4E1;
}
.mhfxr_legal-notice {
  background: var(--c-s2);
  border: 1px solid rgba(197,138,58,0.2);
  border-left: 3px solid var(--gold-flat);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 48px;
  font-size: 0.95rem;
  color: #C4B498;
  line-height: 1.7;
}
.mhfxr_legal-notice--warning {
  border-left-color: #E05252;
  background: #1A0F0F;
  border-color: rgba(224,82,82,0.2);
}
.mhfxr_legal-notice--warning strong { color: #F08080; }
.mhfxr_legal-warning {
  background: #1A0F0F;
  border: 1px solid rgba(224,82,82,0.25);
  border-left: 3px solid #E05252;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0 24px;
  font-size: 0.95rem;
  color: #F08080;
  line-height: 1.6;
}
.mhfxr_legal-section {
  margin-bottom: 48px;
}
.mhfxr_legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #F5EDD8;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197,138,58,0.1);
}
.mhfxr_legal-section h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #D4C4A8;
  margin: 24px 0 12px;
}
.mhfxr_legal-section p {
  font-size: 0.95rem;
  color: #FFE4E1;
  line-height: 1.85;
  margin-bottom: 16px;
}
.mhfxr_legal-section a { color: var(--gold-flat); text-decoration: underline; text-underline-offset: 3px; }
.mhfxr_legal-section a:hover { color: #F0C27A; }
.mhfxr_legal-section ul,
.mhfxr_legal-section ol {
  margin: 12px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mhfxr_legal-section ul { list-style: disc; }
.mhfxr_legal-section ol { list-style: decimal; }
.mhfxr_legal-section li { font-size: 0.95rem; color: #FFE4E1; line-height: 1.75; }
.mhfxr_legal-section ul ul { margin-top: 8px; list-style: circle; }

.mhfxr_legal-box {
  background: var(--c-s1);
  border: 1px solid rgba(197,138,58,0.12);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  color: #C4B498;
  line-height: 1.8;
}

/* Legal table */
.mhfxr_legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.875rem;
  overflow: hidden;
  border-radius: 8px;
}
.mhfxr_legal-table thead tr { background: var(--c-s4); }
.mhfxr_legal-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-flat);
  border-bottom: 1px solid rgba(197,138,58,0.2);
}
.mhfxr_legal-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mhfxr_legal-table tbody tr:last-child { border-bottom: none; }
.mhfxr_legal-table tbody tr:nth-child(even) { background: var(--c-s1); }
.mhfxr_legal-table tbody td {
  padding: 11px 16px;
  color: #FFE4E1;
  vertical-align: top;
  line-height: 1.5;
}

/* Responsible gambling helplines */
.mhfxr_helplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.mhfxr_helpline-card {
  background: var(--c-s2);
  border: 1px solid rgba(197,138,58,0.12);
  border-radius: 12px;
  padding: 24px 20px;
}
.mhfxr_helpline-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #F5EDD8;
  margin: 0 0 8px;
}
.mhfxr_helpline-card p { font-size: 0.85rem; margin-bottom: 4px; }
.mhfxr_helpline-card strong { color: var(--gold-flat); }
.mhfxr_helpline-card a { font-size: 0.85rem; color: var(--gold-flat); text-decoration: underline; }

/* Footer legal id */
.mhfxr_footer-legal-id {
  font-size: 0.75rem !important;
  color: #FFE4E1 !important;
  margin-top: 8px !important;
}

/* ═══════════════════════════════════ BOOKING MODAL */
.mhfxr_bm {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.mhfxr_bm[hidden] { display: none; }

.mhfxr_bm-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.mhfxr_bm.open .mhfxr_bm-overlay { opacity: 1; }

.mhfxr_bm-dialog {
  position: relative; z-index: 1;
  background: var(--c-s2);
  border: 1px solid rgba(197,138,58,0.25);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%; max-width: 460px;
  max-height: 92vh; overflow-y: auto;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.2,0,0,1);
}
.mhfxr_bm.open .mhfxr_bm-dialog { opacity: 1; transform: none; }

.mhfxr_bm-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  color: #FFE4E1; font-size: 17px;
  cursor: pointer; padding: 6px; line-height: 1;
  transition: color 0.2s;
}
.mhfxr_bm-close:hover { color: var(--gold-flat); }

.mhfxr_bm-header        { margin-bottom: 20px; }
.mhfxr_bm-header h2     { font-family: var(--font-display); font-size: 1.7rem; color: #F5EDD8; margin-bottom: 4px; }
.mhfxr_bm-subtitle      { font-size: 0.85rem; color: #FFE4E1; }

.mhfxr_bm-room-tag {
  display: inline-block;
  background: rgba(197,138,58,0.1);
  border: 1px solid rgba(197,138,58,0.3);
  color: var(--gold-flat);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 18px;
}
.mhfxr_bm-room-tag[hidden] { display: none; }

.mhfxr_bm-field         { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.mhfxr_bm-field label   { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #6A5E4E; }
.mhfxr_bm-field input,
.mhfxr_bm-field select  {
  background: var(--c-s1);
  border: 1px solid rgba(197,138,58,0.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: #EDE0D4; outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.mhfxr_bm-field input::placeholder { color: #3A3020; }
.mhfxr_bm-field input:focus,
.mhfxr_bm-field select:focus  { border-color: var(--gold-flat); }
.mhfxr_bm-field input.error   { border-color: #E05252; box-shadow: 0 0 0 2px rgba(224,82,82,0.15); }

.mhfxr_bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mhfxr_bm-submit {
  width: 100%; padding: 13px; margin-top: 6px;
  background: var(--gold-flat); color: #1A0F00;
  border: none; border-radius: 22px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}
.mhfxr_bm-submit:hover    { background: #D49B4A; }
.mhfxr_bm-submit:active   { transform: scale(0.98); }
.mhfxr_bm-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.mhfxr_bm-success       { text-align: center; padding: 16px 0; }
.mhfxr_bm-success-icon  {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(197,138,58,0.1);
  border: 2px solid var(--gold-flat);
  color: var(--gold-flat); font-size: 26px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.mhfxr_bm-success h3    { font-family: var(--font-display); font-size: 1.4rem; color: #F5EDD8; margin-bottom: 10px; }
.mhfxr_bm-success p     { font-size: 0.9rem; color: #FFE4E1; line-height: 1.7; margin-bottom: 24px; }
.mhfxr_bm-close-btn {
  background: none; border: 1px solid rgba(197,138,58,0.3);
  border-radius: 22px; color: var(--gold-flat);
  padding: 9px 28px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: var(--ease);
}
.mhfxr_bm-close-btn:hover { border-color: var(--gold-flat); color: #F0C27A; }

/* ═══════════════════════════════════ SERVICE PAGES */
.mhfxr_service-page { padding-top: 80px; }

.mhfxr_service-hero {
  position: relative;
  height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.mhfxr_service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.92) 0%, rgba(10,9,8,0.4) 100%);
}
.mhfxr_service-hero-content {
  position: relative; z-index: 1;
  padding-bottom: 48px;
}
.mhfxr_service-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff;
  margin-top: 8px;
}

.mhfxr_service-body     { padding: 64px 20px 100px; max-width: 1240px; margin: 0 auto; }
.mhfxr_service-intro    { font-size: 1.1rem; color: #FFE4E1; line-height: 1.85; max-width: 680px; margin-bottom: 56px; }

.mhfxr_service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 60px;
}
.mhfxr_service-feature-card {
  background: var(--c-s2);
  border: 1px solid rgba(197,138,58,0.1);
  border-radius: 16px; padding: 28px 24px;
  transition: var(--ease);
}
.mhfxr_service-feature-card:hover {
  border-color: rgba(197,138,58,0.35);
  transform: translateY(-3px);
}
.mhfxr_service-feature-icon {
  display: block; font-size: 1.6rem;
  color: var(--gold-flat); margin-bottom: 14px;
}
.mhfxr_service-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: #F5EDD8; margin-bottom: 8px;
}
.mhfxr_service-feature-card p { font-size: 0.875rem; color: #7A6E5E; line-height: 1.65; }

.mhfxr_service-cta-block { text-align: center; padding-top: 16px; }
.mhfxr_service-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold-flat); color: #1A0F00;
  border: none; border-radius: 22px;
  font-family: var(--font-body); font-size: 14px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}
.mhfxr_service-cta-btn:hover  { background: #D49B4A; }
.mhfxr_service-cta-btn:active { transform: scale(0.97); }

@media (max-width: 768px) {
  .mhfxr_service-features { grid-template-columns: 1fr 1fr; }
  .mhfxr_bm-row           { grid-template-columns: 1fr; }
  .mhfxr_bm-dialog        { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .mhfxr_service-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .mhfxr_about-grid,
  .mhfxr_dining-grid    { grid-template-columns: 1fr; gap: 48px; }
  .mhfxr_about-image    { order: -1; }
  .mhfxr_rooms-grid     { grid-template-columns: 1fr 1fr; }
  .mhfxr_footer-inner   { grid-template-columns: 1fr 1fr; }
  .mhfxr_highlights-grid { gap: 24px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px 0; }

  .mhfxr_hero { background-attachment: scroll; }
  .mhfxr_casino-bg { background-attachment: scroll; }

  /* Mobile nav: burger LEFT, logo CENTERED, CTA hidden */
  .mhfxr_nav-inner    { position: relative; justify-content: space-between; gap: 0; }
  .mhfxr_nav-burger   { display: flex; order: 0; flex-shrink: 0; }
  .mhfxr_nav-logo     {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
  }
  .mhfxr_nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 20px 0;
    border-bottom: 1px solid rgba(197,138,58,0.14);
    z-index: 199;
  }
  .mhfxr_nav-links.open { display: flex; }
  .mhfxr_nav-links li   { width: 100%; text-align: center; }
  .mhfxr_nav-links a    { display: block; padding: 14px; border-bottom: 1px solid rgba(197,138,58,0.06); }
  .mhfxr_nav-cta        { display: none; }

  .mhfxr_highlights-grid { grid-template-columns: 1fr; gap: 24px; }
  .mhfxr_rooms-grid      { grid-template-columns: 1fr; }
  .mhfxr_amenities-grid  { grid-template-columns: 1fr 1fr; }
  .mhfxr_contact-grid    { grid-template-columns: 1fr; }
  .mhfxr_footer-inner    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mhfxr_footer-bottom   { flex-direction: column; text-align: center; }
  .mhfxr_casino-features { gap: 20px; }
  .mhfxr_about-stats     { gap: 20px; }

  .mhfxr_gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mhfxr_gallery-item.mhfxr_item-tall,
  .mhfxr_gallery-item.mhfxr_item-wide { grid-column: auto; grid-row: auto; }
}

@media (max-width: 480px) {
  .mhfxr_amenities-grid  { grid-template-columns: 1fr; }
  .mhfxr_gallery-grid    { grid-template-columns: 1fr; }
  .mhfxr_footer-inner    { grid-template-columns: 1fr; }
  .mhfxr_about-stats     { flex-direction: column; gap: 16px; }
  .mhfxr_cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .mhfxr_cookie-banner-actions { justify-content: stretch; }
  .mhfxr_cookie-btn-accept,
  .mhfxr_cookie-btn-reject { width: 100%; text-align: center; padding: 12px; }
  .mhfxr_helplines-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mhfxr_helplines-grid  { grid-template-columns: 1fr 1fr; }
  .mhfxr_legal-page      { padding: 100px 0 64px; }
  .mhfxr_legal-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
  .mhfxr_legal-header h1 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
    overflow-wrap: anywhere;
  }
  .mhfxr_legal-notice,
  .mhfxr_legal-warning,
  .mhfxr_legal-box {
    padding: 16px;
  }
  .mhfxr_legal-notice { margin-bottom: 36px; }
  .mhfxr_legal-section { margin-bottom: 36px; }
  .mhfxr_legal-section h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .mhfxr_legal-section p,
  .mhfxr_legal-section li {
    font-size: 0.925rem;
    overflow-wrap: anywhere;
  }
  .mhfxr_legal-section ul,
  .mhfxr_legal-section ol {
    margin-left: 20px;
  }
  .mhfxr_legal-table,
  .mhfxr_legal-table thead,
  .mhfxr_legal-table tbody,
  .mhfxr_legal-table tr,
  .mhfxr_legal-table th,
  .mhfxr_legal-table td {
    display: block;
    width: 100%;
  }
  .mhfxr_legal-table {
    overflow: visible;
    border-radius: 0;
    font-size: 0.875rem;
  }
  .mhfxr_legal-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .mhfxr_legal-table tbody {
    display: grid;
    gap: 14px;
  }
  .mhfxr_legal-table tbody tr {
    padding: 4px 16px;
    background: var(--c-s1);
    border: 1px solid rgba(74,146,200,0.18);
    border-radius: 10px;
  }
  .mhfxr_legal-table tbody tr:nth-child(even) {
    background: var(--c-s1);
  }
  .mhfxr_legal-table tbody td {
    padding: 12px 0;
    overflow-wrap: anywhere;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .mhfxr_legal-table tbody td:last-child { border-bottom: 0; }
  .mhfxr_legal-table--cookies td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-flat);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .mhfxr_legal-table--cookies td:nth-child(1)::before { content: "Kategorie"; }
  .mhfxr_legal-table--cookies td:nth-child(2)::before { content: "Zweck"; }
  .mhfxr_legal-table--cookies td:nth-child(3)::before { content: "Rechtsgrundlage"; }
  .mhfxr_legal-table--cookies td:nth-child(4)::before { content: "Speicherdauer"; }
  .mhfxr_contact-form-wrap { padding: 24px; }
  .mhfxr_contact-form { grid-template-columns: 1fr; }
  .mhfxr_contact-form .mhfxr_btn-filled {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .mhfxr_helplines-grid { grid-template-columns: 1fr; }
}


/* CedarloomLabs review update */
body.lock {
  overflow: hidden;
}
.mhfxr_service-body {
  max-width: 1180px;
}
.mhfxr_service-intro {
  max-width: 940px;
}
.mhfxr_footer-bottom p span[data-company],
.mhfxr_footer-bottom p span[data-address],
.mhfxr_footer-legal-id span[data-company],
.mhfxr_footer-legal-id span[data-address] {
  color: inherit;
}
.mhfxr_contact-form input.error,
.mhfxr_contact-form textarea.error {
  border-color: #E05252 !important;
  box-shadow: 0 0 0 2px rgba(224,82,82,0.2);
}
.mhfxr_legal-section strong span[data-company] {
  color: inherit;
}
@media (max-width: 768px) {
  .mhfxr_nav-links.open {
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
}
