/* ═══════════════════════════════════════════════════
   Split-Screen Duotone — full-bleed 50/50 rows alternating
   a plain text panel with a photo panel tinted by a two-hue
   duotone gradient. No confined .lcbzp_container columns for the
   major content sections — edge-to-edge splits are the whole
   compositional language here.
   Palette tokens (--gold-flat, --accent2, --c-bg, --c-s1..4,
   --md-sys-color-*) are injected per-generation by
   src/paletteEngine.js — this file only defines how those
   tokens are USED, never hard-codes hex.
   ═══════════════════════════════════════════════════ */

:root {
  --font-display: 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Helvetica Neue', Arial, sans-serif;
  --font-ui:      'Helvetica Neue', Arial, sans-serif;

  --section-padding: 100px 0;
  --container-max:   1240px;

  --c-bg: #17131F;
  --c-s1: #1C1826;
  --c-s2: #221D2D;
  --c-s3: #292235;
  --c-s4: #31293D;
  --gold-flat: #5B46A8;
  --accent2: #E0673B;
  --hairline: rgba(255,255,255,0.24);
  --text-body: #F5EFE5;
  --text-heading: #FFFDF8;
  --text-secondary: #D6D2CA;

  --strip-bg: color-mix(in srgb, black 85%, var(--gold-flat) 15%);
  --strip-ink: color-mix(in srgb, white 95%, var(--gold-flat) 5%);
  --action-bg: #1F6F5B;
  --action-hover: #8A5700;

  --ease: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--c-bg); color: var(--text-body); 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; }

.lcbzp_container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.lcbzp_section { padding: var(--section-padding); }

/* ── The core split mechanic — full-bleed, no .lcbzp_container ── */
.lcbzp_split { display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; }
.lcbzp_side { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 72px); position: relative; }
.lcbzp_side.lcbzp_text-light { background: var(--c-bg); color: var(--text-body); }
.lcbzp_side.lcbzp_image { position: relative; background-size: cover; background-position: center; }
.lcbzp_side.lcbzp_image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, color-mix(in srgb, var(--gold-flat) 78%, transparent), color-mix(in srgb, var(--accent2) 78%, transparent));
  mix-blend-mode: color;
}
.lcbzp_side.lcbzp_image.lcbzp_duo-alt::before { background: linear-gradient(-20deg, color-mix(in srgb, var(--accent2) 70%, transparent), color-mix(in srgb, var(--gold-flat) 70%, transparent)); }
.lcbzp_amenities-inset { position: absolute; right: 24px; bottom: 24px; width: 42%; aspect-ratio: 4/3; background-size: cover; background-position: center; border: 5px solid var(--c-bg); box-shadow: 0 16px 32px rgba(0,0,0,0.4); }

.lcbzp_btn-filled, .lcbzp_btn-outlined, .lcbzp_btn-text {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 0;
  font-family: var(--font-ui); font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; white-space: nowrap; line-height: 1;
  transition: var(--ease); border: none;
}
.lcbzp_btn-filled { background: var(--action-bg); color: #fff; }
.lcbzp_btn-filled:hover { background: var(--action-hover); }
.lcbzp_btn-outlined { background: transparent; color: var(--text-heading); border: 1px solid var(--hairline); }
.lcbzp_btn-outlined:hover { border-color: var(--gold-flat); color: var(--gold-flat); }
.lcbzp_btn-text { background: transparent; color: var(--accent2); text-decoration: underline; text-underline-offset: 4px; }
.lcbzp_card-elevated { background: var(--c-s1); }

.lcbzp_section-eyebrow { display: block; font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 12px; }
.lcbzp_section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.015em; line-height: 1.05; color: var(--text-heading); }
.lcbzp_section-title.lcbzp_light { color: var(--text-heading); }
.lcbzp_section-subtitle { font-size: 0.95rem; color: var(--text-secondary); max-width: 480px; }
.lcbzp_section-body { font-weight: 300; font-size: 1rem; color: var(--text-secondary); max-width: 440px; line-height: 1.7; margin-top: 16px; }
.lcbzp_section-header { margin-bottom: 40px; }

[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════ NAVIGATION */
.lcbzp_nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px 0; transition: var(--ease); }
.lcbzp_nav-header.scrolled { background: var(--c-bg); border-bottom: 1px solid var(--hairline); padding: 14px 0; }
.lcbzp_nav-inner { display: flex; align-items: center; gap: 36px; padding-left: 24px; padding-right: 24px; }
.lcbzp_nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-heading); white-space: nowrap; flex-shrink: 0; }
.lcbzp_nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 28px; row-gap: 6px; margin-left: auto; }
.lcbzp_nav-links a { font-family: var(--font-ui); font-size: 13px; font-weight: 700; color: var(--text-secondary); transition: var(--ease); white-space: nowrap; }
.lcbzp_nav-links a:hover { color: var(--accent2); }
.lcbzp_nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.lcbzp_nav-burger span { display: block; width: 22px; height: 2px; background: var(--accent2); transition: var(--ease); }
.lcbzp_nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lcbzp_nav-burger.active span:nth-child(2) { opacity: 0; }
.lcbzp_nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════ HERO */
.lcbzp_hero { position: relative; margin-top: 0; }
.lcbzp_hero-eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 14px; }
.lcbzp_hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.015em; color: var(--text-heading); margin-bottom: 14px; }
.lcbzp_hero-subtitle { font-weight: 300; font-size: clamp(0.9rem, 1.4vw, 1rem); color: var(--text-secondary); max-width: 400px; line-height: 1.7; margin-bottom: 28px; }
.lcbzp_hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* Sits at the exact seam between the text half and the photo half — a plain
   text color can't guarantee contrast against both sides at once, so it gets
   its own small solid backdrop (scheme-aware, same c-bg/text-heading pairing
   used everywhere else) instead of relying on whatever's behind it. */
.lcbzp_hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg);
  color: var(--text-heading);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.lcbzp_scroll-arrow { display: block; font-size: 20px; animation: bounceY 2s ease-in-out infinite; }
@keyframes bounceY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ══════════════════════════════════ HIGHLIGHTS STRIP */
.lcbzp_highlights-strip { background: var(--strip-bg); padding: 0; }
.lcbzp_highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.lcbzp_highlight-item { padding: clamp(28px, 3vw, 40px); border-right: 1px solid rgba(255,255,255,0.08); color: var(--strip-ink); display: flex; gap: 14px; }
.lcbzp_highlight-item:last-child { border-right: none; }
.lcbzp_highlight-icon { display: none; }
.lcbzp_highlight-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.lcbzp_highlight-desc { font-size: 0.87rem; line-height: 1.55; opacity: 0.68; margin-top: 6px; }

/* ═══════════════════════════════════════════ ABOUT */
.lcbzp_about-stats { display: flex; gap: 32px; margin-top: 32px; }
.lcbzp_stat-number { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--accent2); }
.lcbzp_stat-label { display: block; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }

/* ═══════════════════════════════════════════ ROOMS */
.lcbzp_rooms-section { background: var(--c-bg); padding: var(--section-padding) 0; }
.lcbzp_rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.lcbzp_room-card { overflow: hidden; display: flex; flex-direction: column; background: var(--c-s1); border-right: 1px solid var(--hairline); }
.lcbzp_room-card:last-child { border-right: none; }
.lcbzp_featured-card { background: var(--c-s2); }
.lcbzp_room-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.lcbzp_room-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, color-mix(in srgb, var(--gold-flat) 35%, transparent), color-mix(in srgb, var(--accent2) 35%, transparent)); mix-blend-mode: color; }
.lcbzp_room-feature-badge { position: absolute; bottom: 12px; left: 12px; z-index: 1; background: color-mix(in srgb, var(--c-bg) 78%, transparent); color: var(--text-heading); font-family: var(--font-ui); font-size: 10px; font-weight: 700; padding: 5px 12px; }
.lcbzp_room-popular-badge { position: absolute; top: 12px; right: 12px; z-index: 1; background: var(--accent2); color: var(--on-accent2, #fff); font-family: var(--font-ui); font-size: 10px; font-weight: 700; padding: 5px 12px; }
.lcbzp_room-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.lcbzp_room-stars { display: none; }
.lcbzp_room-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-heading); margin-bottom: 8px; }
.lcbzp_room-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.lcbzp_room-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.lcbzp_room-price { font-family: var(--font-display); font-weight: 800; color: var(--accent2); }
.lcbzp_room-price small { font-family: var(--font-ui); font-size: 0.65rem; color: var(--text-secondary); font-weight: 400; }

/* ═══════════════════════════════════════════ CASINO */
.lcbzp_casino-section { padding: 0; }
.lcbzp_casino-bg { position: relative; min-height: 480px; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; }
.lcbzp_casino-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, var(--strip-bg) 0%, color-mix(in srgb, var(--strip-bg) 44%, transparent) 100%); }
.lcbzp_casino-content { position: relative; z-index: 2; padding: 64px 24px; max-width: 620px; color: var(--strip-ink); }
.lcbzp_casino-content .lcbzp_section-title { color: var(--strip-ink); }
.lcbzp_casino-desc { font-size: 0.95rem; color: color-mix(in srgb, var(--strip-ink) 75%, transparent); line-height: 1.7; margin-bottom: 30px; }
.lcbzp_casino-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-bottom: 32px; border-top: 1px solid rgba(255,255,255,0.1); border-left: 1px solid rgba(255,255,255,0.1); }
.lcbzp_casino-feature { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 16px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--strip-ink); }
.lcbzp_cf-icon { display: none; }

/* ═══════════════════════════════════════════ DINING */
.lcbzp_dining-section { min-height: 70vh; }

/* ═══════════════════════════════════════ AMENITIES */
.lcbzp_amenities-section { min-height: 70vh; }
.lcbzp_amenities-list { margin-top: 20px; }
.lcbzp_amenities-list li { padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; color: var(--text-secondary); }
.lcbzp_amenities-list li:first-child { border-top: 1px solid var(--hairline); }

/* ══════════════════════════════════ TESTIMONIALS */
.lcbzp_testimonials-section { background: var(--c-bg); }
.lcbzp_testimonial-card { background: var(--c-s1); border: none; padding: 26px; height: 100%; display: flex; flex-direction: column; gap: 16px; border-top: 3px solid var(--accent2); }
.lcbzp_testimonial-stars { display: none; }
.lcbzp_testimonial-text { font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; color: var(--text-heading); line-height: 1.55; flex: 1; }
.lcbzp_testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.lcbzp_testimonial-name { font-family: var(--font-ui); font-weight: 700; color: var(--text-heading); font-size: 0.85rem; }
.lcbzp_testimonial-location { font-family: var(--font-ui); font-size: 0.78rem; color: var(--text-secondary); }
.lcbzp_testimonials-swiper { padding-bottom: 44px !important; }
.swiper-pagination-bullet { background: var(--hairline); opacity: 1; border-radius: 0; width: 20px; height: 3px; }
.swiper-pagination-bullet-active { background: var(--accent2); }

/* ═══════════════════════════════ INTERLUDE (full-bleed) */
.lcbzp_interlude-section { padding: 0; }
.lcbzp_interlude-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); }
.lcbzp_interlude-item { overflow: hidden; position: relative; }
.lcbzp_interlude-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, color-mix(in srgb, var(--gold-flat) 25%, transparent), color-mix(in srgb, var(--accent2) 25%, transparent)); mix-blend-mode: color; }
.lcbzp_interlude-tall,
.lcbzp_interlude-wide,
.lcbzp_interlude-square { aspect-ratio: 4/3; }

/* ═══════════════════════════════ MORE SERVICES */
.lcbzp_more-services-section { background: var(--c-bg); }
.lcbzp_more-services-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ═══════════════════════════════════════════ CONTACT */
.lcbzp_contact-section { background: var(--c-bg); }
.lcbzp_contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.lcbzp_contact-details { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.lcbzp_contact-item { display: flex; align-items: center; gap: 14px; color: var(--text-secondary); font-size: 0.92rem; }
.lcbzp_contact-icon { display: none; }
.lcbzp_contact-item a:hover { color: var(--accent2); }
.lcbzp_contact-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.lcbzp_hotel-map { aspect-ratio: 4/5; overflow: hidden; isolation: isolate; }
.lcbzp_map-pin { width: 40px; height: 40px; background: var(--accent2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--on-accent2, #fff); font-size: 18px; border: 2px solid var(--c-bg); }
.leaflet-popup-content-wrapper { background: var(--c-s2) !important; box-shadow: none !important; color: var(--text-body) !important; }
.leaflet-popup-content-wrapper strong { color: var(--accent2); }
.leaflet-popup-content-wrapper span { font-size: 12px; color: var(--text-secondary); }
.leaflet-popup-tip-container .leaflet-popup-tip { background: var(--c-s2) !important; }
.leaflet-bar a { background: var(--c-s2) !important; color: var(--accent2) !important; }
.leaflet-bar a:hover { background: var(--c-s3) !important; }
.leaflet-control-attribution { background: color-mix(in srgb, var(--c-bg) 70%, transparent) !important; color: var(--text-secondary) !important; font-size: 10px !important; }

/* ═══════════════════════════════════════════ FOOTER */
.lcbzp_footer { background: var(--c-bg); border-top: 1px solid var(--hairline); }
.lcbzp_footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px; max-width: var(--container-max); margin: 0 auto; }
.lcbzp_footer-logo { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text-heading); margin-bottom: 12px; }
.lcbzp_footer-brand p { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; max-width: 240px; }
.lcbzp_footer-links h4 { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; }
.lcbzp_footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.lcbzp_footer-links a { font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); transition: var(--ease); }
.lcbzp_footer-links a:hover { color: var(--accent2); }
.lcbzp_footer-bottom { border-top: 1px solid var(--hairline); max-width: var(--container-max); margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.lcbzp_footer-bottom p { font-family: var(--font-ui); font-size: 12px; color: var(--text-secondary); }
.lcbzp_gambling-notice { font-size: 11px !important; }

/* ══════════════════════════════════ COOKIE BANNER */
.lcbzp_cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--c-s1); border-top: 1px solid var(--hairline); padding: 18px 0; transition: transform 0.3s ease, opacity 0.3s ease; }
.lcbzp_cookie-banner.hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.lcbzp_cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.lcbzp_cookie-banner-text { flex: 1; font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); line-height: 1.6; min-width: 240px; }
.lcbzp_cookie-banner-text strong { color: var(--text-heading); }
.lcbzp_cookie-banner-text a { color: var(--accent2); text-decoration: underline; }
.lcbzp_cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lcbzp_cookie-btn-accept, .lcbzp_cookie-btn-reject { padding: 10px 20px; border-radius: 0; font-family: var(--font-ui); font-size: 12px; font-weight: 700; cursor: pointer; border: none; transition: var(--ease); }
.lcbzp_cookie-btn-accept { background: var(--action-bg); color: #fff; }
.lcbzp_cookie-btn-accept:hover { background: var(--action-hover); }
.lcbzp_cookie-btn-reject { background: transparent; color: var(--text-heading); border: 1px solid var(--hairline); }

/* ═══════════════════════════════ LEGAL / COMPLIANCE PAGES */
.lcbzp_legal-page { padding: 130px 0 90px; min-height: 80vh; }
.lcbzp_legal-page > .lcbzp_container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 920px;
}
.lcbzp_legal-page section,
.lcbzp_legal-page .lcbzp_legal-section,
.lcbzp_legal-page .lcbzp_legal-box,
.lcbzp_legal-page .lcbzp_legal-notice,
.lcbzp_legal-page .lcbzp_legal-warning {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lcbzp_legal-page table,
.lcbzp_legal-table {
  display: block;
  width: 100%;
  background: var(--c-s2);
  border: 1px solid var(--hairline);
}
.lcbzp_legal-page thead,
.lcbzp_legal-page tbody,
.lcbzp_legal-page tr {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.lcbzp_legal-page tr {
  border-bottom: 1px solid var(--hairline);
}
.lcbzp_legal-page tr:last-child { border-bottom: 0; }
.lcbzp_legal-page th,
.lcbzp_legal-page td {
  display: block;
  width: 100%;
  padding: 10px 14px;
  color: var(--text-secondary);
  border: 0;
}
.lcbzp_legal-page th,
.lcbzp_legal-page td:first-child {
  color: var(--text-heading);
  font-weight: 700;
  background: var(--c-s1);
}
.lcbzp_legal-header { margin-bottom: 40px; border-bottom: 1px solid var(--hairline); padding-bottom: 24px; }
.lcbzp_legal-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--text-heading); margin-bottom: 8px; }
.lcbzp_legal-meta { font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); }
.lcbzp_legal-notice { background: var(--c-s1); border-left: 3px solid var(--accent2); padding: 20px 24px; margin-bottom: 40px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.lcbzp_legal-notice--warning { border-left-color: #C0524A; }
.lcbzp_legal-notice--warning strong { color: #D68880; }
.lcbzp_legal-warning { background: var(--c-s1); border-left: 3px solid #C0524A; padding: 20px 24px; margin: 16px 0 24px; font-size: 0.95rem; color: #D68880; line-height: 1.6; }
.lcbzp_legal-section { margin-bottom: 44px; }
.lcbzp_legal-section h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text-heading); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--hairline); }
.lcbzp_legal-section h3 { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; color: var(--text-heading); margin: 22px 0 10px; }
.lcbzp_legal-section p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.lcbzp_legal-section a { color: var(--accent2); text-decoration: underline; }
.lcbzp_legal-section ul, .lcbzp_legal-section ol { margin: 12px 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.lcbzp_legal-section ul { list-style: disc; }
.lcbzp_legal-section ol { list-style: decimal; }
.lcbzp_legal-section li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.lcbzp_legal-box { background: var(--c-s1); padding: 20px 24px; margin: 16px 0 24px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.lcbzp_table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; box-shadow: inset -12px 0 8px -8px rgba(0,0,0,0.18); }
.lcbzp_legal-table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 16px 0 24px; font-size: 0.85rem; background: var(--c-s2); border: 1px solid var(--hairline); }
.lcbzp_legal-table thead th { padding: 10px 14px; text-align: left; font-family: var(--font-ui); font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--accent2); background: var(--c-s2); border-bottom: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
.lcbzp_legal-table thead th:last-child { border-right: none; }
.lcbzp_legal-table tbody tr:nth-child(even) { background: var(--c-s2); }
.lcbzp_legal-table tbody td { padding: 10px 14px; color: var(--text-secondary); vertical-align: top; border-bottom: none; border-right: none; }
.lcbzp_legal-table tbody td:last-child { border-right: none; }
.lcbzp_legal-table tbody tr:last-child td { border-bottom: none; }
.lcbzp_helplines-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); margin: 24px 0; }
.lcbzp_helpline-card { background: var(--c-bg); padding: 22px 20px; }
.lcbzp_helpline-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text-heading); margin: 0 0 8px; }
.lcbzp_helpline-card p { font-family: var(--font-ui); font-size: 0.85rem; margin-bottom: 4px; color: var(--text-secondary); }
.lcbzp_helpline-card strong { color: var(--accent2); }
.lcbzp_helpline-card a { font-size: 0.85rem; color: var(--accent2); text-decoration: underline; }
.lcbzp_footer-legal-id { font-size: 0.75rem !important; color: var(--text-secondary) !important; margin-top: 8px !important; }

/* ═══════════════════════════════════ BOOKING MODAL */
.lcbzp_bm { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lcbzp_bm[hidden] { display: none; }
.lcbzp_bm-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); opacity: 0; transition: opacity 0.25s ease; }
.lcbzp_bm.open .lcbzp_bm-overlay { opacity: 1; }
.lcbzp_bm-dialog { position: relative; z-index: 1; background: var(--c-s1); padding: 40px 36px; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto; opacity: 0; transform: translateY(14px); transition: opacity 0.25s ease, transform 0.25s ease; }
.lcbzp_bm.open .lcbzp_bm-dialog { opacity: 1; transform: none; }
.lcbzp_bm-close { position: absolute; top: 16px; right: 18px; background: none; border: none; color: var(--text-secondary); font-size: 16px; cursor: pointer; padding: 6px; }
.lcbzp_bm-close:hover { color: var(--accent2); }
.lcbzp_bm-header { margin-bottom: 22px; }
.lcbzp_bm-header h2 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--text-heading); margin-bottom: 6px; }
.lcbzp_bm-subtitle { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text-secondary); }
.lcbzp_bm-room-tag { display: inline-block; background: var(--accent2); color: var(--on-accent2, #fff); font-family: var(--font-ui); font-size: 11px; font-weight: 700; padding: 5px 12px; margin-bottom: 16px; }
.lcbzp_bm-room-tag[hidden] { display: none; }
.lcbzp_bm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lcbzp_bm-field label { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--text-secondary); }
.lcbzp_bm-field input, .lcbzp_bm-field select { background: var(--c-bg); border: 1px solid var(--hairline); padding: 12px 14px; font-family: var(--font-ui); font-size: 0.9rem; color: var(--text-body); outline: none; -webkit-appearance: none; appearance: none; }
.lcbzp_bm-field input:focus, .lcbzp_bm-field select:focus { border-color: var(--accent2); }
.lcbzp_bm-field input.error { border-color: #C0524A; }
.lcbzp_bm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lcbzp_bm-submit { width: 100%; padding: 14px; margin-top: 6px; background: var(--action-bg); color: #fff; border: none; font-family: var(--font-ui); font-size: 13px; font-weight: 700; cursor: pointer; }
.lcbzp_bm-submit:hover { background: var(--action-hover); }
.lcbzp_bm-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.lcbzp_bm-success { text-align: center; padding: 16px 0; }
.lcbzp_bm-success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent2); color: var(--on-accent2, #fff); font-size: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.lcbzp_bm-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--text-heading); margin-bottom: 10px; }
.lcbzp_bm-success p { font-family: var(--font-ui); font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.lcbzp_bm-close-btn { background: none; border: 1px solid var(--hairline); color: var(--text-heading); padding: 10px 30px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; cursor: pointer; }
.lcbzp_bm-close-btn:hover { border-color: var(--accent2); color: var(--accent2); }

/* ═══════════════════════════════════ SERVICE PAGES */
.lcbzp_service-page { padding-top: 80px; }
.lcbzp_service-hero { position: relative; height: 400px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.lcbzp_service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--c-bg) 10%, transparent 60%); }
.lcbzp_service-hero-content { position: relative; z-index: 1; padding: 0 24px 40px; max-width: var(--container-max); margin: 0 auto; }
.lcbzp_service-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--text-heading); margin-top: 8px; }
.lcbzp_service-body { padding: 64px 24px 100px; max-width: var(--container-max); margin: 0 auto; }
.lcbzp_service-intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; margin-bottom: 56px; }
.lcbzp_service-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.lcbzp_service-intro-image { aspect-ratio: 4/3; overflow: hidden; }
.lcbzp_service-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); margin-bottom: 56px; }
.lcbzp_service-feature-card { background: var(--c-bg); padding: 26px 22px; transition: var(--ease); }
.lcbzp_service-feature-card:hover { background: var(--c-s1); }
.lcbzp_service-feature-icon { display: none; }
.lcbzp_service-feature-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text-heading); margin-bottom: 8px; }
.lcbzp_service-feature-card p { font-family: var(--font-ui); font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.lcbzp_service-cta-block { text-align: left; padding-top: 12px; }
.lcbzp_service-cta-btn { display: inline-block; padding: 15px 38px; background: var(--action-bg); color: #fff; border: none; font-family: var(--font-ui); font-size: 12px; font-weight: 700; cursor: pointer; }
.lcbzp_service-cta-btn:hover { background: var(--action-hover); }

@media (max-width: 860px) {
  .lcbzp_service-features { grid-template-columns: 1fr 1fr; }
  .lcbzp_split, .lcbzp_highlights-grid, .lcbzp_rooms-grid, .lcbzp_interlude-grid, .lcbzp_casino-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .lcbzp_service-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .lcbzp_bm-row { grid-template-columns: 1fr; }
  .lcbzp_bm-dialog { padding: 30px 22px; }
}
@media (max-width: 480px) {
  .lcbzp_service-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .lcbzp_contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .lcbzp_footer-inner { grid-template-columns: 1fr 1fr; }
  .lcbzp_amenities-inset { display: none; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px 0; }
  .lcbzp_split { min-height: auto; }
  .lcbzp_side { padding: 40px 24px; min-height: 320px; }
  .lcbzp_casino-bg { background-attachment: scroll; }

  .lcbzp_nav-inner    { position: relative; justify-content: space-between; gap: 0; padding-left: 16px; padding-right: 16px; }
  .lcbzp_nav-burger   { display: flex; order: 0; flex-shrink: 0; }
  .lcbzp_nav-logo     { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 1rem; }
  .lcbzp_nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--c-bg); flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; align-items: center; gap: 0;
    padding: 16px 0; border-bottom: 1px solid var(--hairline); z-index: 199;
  }
  .lcbzp_nav-links.open { display: flex; }
  .lcbzp_nav-links li   { width: 100%; text-align: center; }
  .lcbzp_nav-links a    { display: block; padding: 14px; }
  .lcbzp_nav-cta        { display: none; }

  .lcbzp_footer-inner    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .lcbzp_footer-bottom   { flex-direction: column; text-align: center; }
  .lcbzp_about-stats     { flex-wrap: wrap; gap: 20px; }
}

/* This 768px block (tablet: 2-col helplines) must stay BEFORE the 480px
   block below — both queries are active simultaneously on phones narrower
   than 480px, and with equal specificity the one later in the file wins.
   If this were last, its "1fr 1fr" would silently override the 480px
   block's "1fr" on every phone, not just tablets. */
@media (max-width: 768px) {
  .lcbzp_helplines-grid  { grid-template-columns: 1fr; }
  .lcbzp_legal-page      { padding: 100px 0 60px; }
}

@media (max-width: 480px) {
  .lcbzp_footer-inner    { grid-template-columns: 1fr; }
  .lcbzp_cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .lcbzp_cookie-banner-actions { justify-content: stretch; }
  .lcbzp_cookie-btn-accept, .lcbzp_cookie-btn-reject { width: 100%; text-align: center; padding: 12px; }
  .lcbzp_helplines-grid  { grid-template-columns: 1fr; }
  .lcbzp_legal-table     { font-size: 0.8rem; min-width: 0; }
}
