/* ═══════════════════════════════════════════════════
   Bento Grid — an asymmetric grid of mixed photo/color/text
   tiles is the whole compositional language here. Hero and
   Amenities are literal bento blocks; Rooms uses a 4-column
   bento span pattern; Interlude reuses the same cell system.
   Palette tokens (--gold-flat, --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: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', sans-serif;
  --font-ui:      -apple-system, BlinkMacSystemFont, sans-serif;

  --section-padding: 96px 0;
  --container-max:   1280px;

  --c-bg: #16161A;
  --c-s1: #1B1B1F;
  --c-s2: #202024;
  --c-s3: #262629;
  --c-s4: #2D2D30;
  --gold-flat: #FF7C48;
  --hairline: rgba(255,255,255,0.14);

  --cell-dark: color-mix(in srgb, var(--text-heading) 90%, var(--c-bg) 10%);
  --cell-dark-ink: color-mix(in srgb, var(--c-bg) 88%, white 12%);
  --cell-elev: var(--c-s2);

  --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; }

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

.d07t0_btn-filled, .d07t0_btn-outlined, .d07t0_btn-text {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none; white-space: nowrap; line-height: 1;
  transition: var(--ease); border: none;
}
.d07t0_btn-filled { background: var(--gold-flat); color: var(--md-sys-color-on-primary, #fff); }
.d07t0_btn-filled:hover { opacity: 0.88; }
.d07t0_btn-outlined { background: color-mix(in srgb, var(--text-heading) 10%, transparent); color: var(--text-heading); }
.d07t0_btn-outlined:hover { background: color-mix(in srgb, var(--text-heading) 16%, transparent); }
.d07t0_btn-text { background: transparent; color: var(--gold-flat); text-decoration: underline; text-underline-offset: 4px; }
.d07t0_card-elevated { background: var(--c-s1); border-radius: 22px; overflow: hidden; }

.d07t0_section-eyebrow { display: block; font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--gold-flat); margin-bottom: 10px; }
.d07t0_section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text-heading); max-width: 16ch; }
.d07t0_section-title.d07t0_light { color: var(--text-heading); }
.d07t0_section-subtitle { font-size: 0.95rem; color: var(--text-secondary); max-width: 480px; }
.d07t0_section-body { font-size: 1rem; color: var(--text-secondary); max-width: 520px; line-height: 1.7; }
.d07t0_section-header { margin-bottom: 36px; }

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

/* ── The core bento mechanic — reused for Hero, Amenities, Interlude,
   and (via span utility classes) applied to Rooms too. ── */
.d07t0_bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 14px; }
.d07t0_cell { border-radius: 22px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; position: relative; }
.d07t0_cell.d07t0_wide { grid-column: span 2; }
.d07t0_cell.d07t0_tall { grid-row: span 2; }
.d07t0_cell.d07t0_dark  { background: var(--cell-dark); color: var(--cell-dark-ink); }
.d07t0_cell.d07t0_orange { background: var(--gold-flat); color: var(--md-sys-color-on-primary, #fff); }
.d07t0_cell.d07t0_white { background: var(--cell-elev); color: var(--text-body); }
.d07t0_cell.d07t0_photo { background-size: cover; background-position: center; }
.d07t0_cell .d07t0_lbl { font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.65; margin-bottom: 6px; }
.d07t0_cell .d07t0_big { font-family: var(--font-display); font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: 4px; }
.d07t0_cell .d { font-size: 0.88rem; line-height: 1.55; opacity: 0.85; }
.d07t0_highlight-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.d07t0_highlight-desc { font-size: 0.86rem; opacity: 0.8; margin-top: 6px; }

/* ═══════════════════════════════════════ NAVIGATION */
.d07t0_nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px 0; transition: var(--ease); }
.d07t0_nav-header.scrolled { background: color-mix(in srgb, var(--c-bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--hairline); padding: 14px 0; }
.d07t0_nav-inner { display: flex; align-items: center; gap: 36px; }
.d07t0_nav-logo { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-heading); white-space: nowrap; flex-shrink: 0; }
.d07t0_nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 28px; row-gap: 6px; margin-left: auto; }
.d07t0_nav-links a { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--text-secondary); transition: var(--ease); white-space: nowrap; }
.d07t0_nav-links a:hover { color: var(--gold-flat); }
.d07t0_nav-cta { border-radius: 100px !important; }
.d07t0_nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.d07t0_nav-burger span { display: block; width: 22px; height: 2px; border-radius: 2px; background: var(--gold-flat); transition: var(--ease); }
.d07t0_nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.d07t0_nav-burger.active span:nth-child(2) { opacity: 0; }
.d07t0_nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════ HERO */
.d07t0_hero { position: relative; padding: 140px 0 90px; }
.d07t0_hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.d07t0_hero-eyebrow { font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--gold-flat); margin-bottom: 12px; }
.d07t0_hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; color: var(--text-heading); margin-bottom: 20px; }
.d07t0_hero-subtitle { font-family: var(--font-ui); font-size: 1rem; color: var(--text-secondary); line-height: 1.7; max-width: 46ch; margin-bottom: 28px; }
.d07t0_hero-visual { display: flex; flex-direction: column; gap: 14px; }
.d07t0_hero-photo { aspect-ratio: 4/3; border-radius: 22px; background-size: cover; background-position: center; }
.d07t0_hero-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.d07t0_hero-highlights .d07t0_cell { padding: 16px; border-radius: 16px; min-height: 130px; }
.d07t0_hero-highlights .d07t0_cell .d07t0_big { font-size: 0.92rem; }
.d07t0_hero-highlights .d07t0_cell .d { font-size: 0.78rem; }
.d07t0_hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.d07t0_hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--text-secondary); }
.d07t0_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); } }

/* ═══════════════════════════════════════════ ABOUT */
.d07t0_about-section { background: var(--c-bg); border-top: 1px solid var(--hairline); }
.d07t0_about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.d07t0_about-stats { display: flex; gap: 28px; margin-top: 32px; }
.d07t0_stat { background: var(--c-s1); border-radius: 18px; padding: 18px 20px; flex: 1; }
.d07t0_stat-number { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--gold-flat); }
.d07t0_stat-label { display: block; font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-secondary); margin-top: 4px; }
.d07t0_about-image-group { position: relative; }
.d07t0_about-image { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.d07t0_about-image-inset { position: absolute; right: -8%; bottom: -8%; width: 46%; aspect-ratio: 4/3; border-radius: 18px; border: 5px solid var(--c-bg); overflow: hidden; box-shadow: 0 16px 32px rgba(0,0,0,0.35); }

/* ═══════════════════════════════════════════ ROOMS */
.d07t0_rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.d07t0_room-card { border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; background: var(--c-s1); }
.d07t0_room-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.d07t0_room-feature-badge { position: absolute; bottom: 12px; left: 12px; background: color-mix(in srgb, var(--c-bg) 75%, transparent); color: var(--text-heading); font-family: var(--font-ui); font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.d07t0_room-popular-badge { position: absolute; top: 12px; right: 12px; background: var(--gold-flat); color: var(--md-sys-color-on-primary, #fff); font-family: var(--font-ui); font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }
.d07t0_room-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.d07t0_room-stars { display: none; }
.d07t0_room-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.d07t0_room-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.d07t0_room-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.d07t0_room-price { font-family: var(--font-display); font-weight: 700; color: var(--gold-flat); }
.d07t0_room-price small { font-family: var(--font-ui); font-size: 0.65rem; color: var(--text-secondary); font-weight: 400; }

/* ═══════════════════════════════════════════ CASINO */
.d07t0_casino-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.d07t0_casino-image-group { position: relative; }
.d07t0_casino-image { aspect-ratio: 4/5; border-radius: 22px; background-size: cover; background-position: center; }
.d07t0_casino-desc { font-size: 0.98rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 32px; }
.d07t0_casino-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 36px; }
.d07t0_casino-feature { background: var(--c-s1); border-radius: 16px; padding: 16px; display: flex; flex-direction: column; gap: 6px; font-family: var(--font-ui); font-size: 12px; font-weight: 600; color: var(--text-heading); }
.d07t0_cf-icon { display: none; }

/* ═══════════════════════════════════════════ DINING */
.d07t0_dining-section { background: var(--c-bg); }
.d07t0_dining-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.d07t0_dining-image-group { position: relative; }
.d07t0_dining-image { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.d07t0_dining-image-inset { position: absolute; left: -8%; bottom: -8%; width: 46%; aspect-ratio: 4/3; border-radius: 18px; border: 5px solid var(--c-bg); overflow: hidden; box-shadow: 0 16px 32px rgba(0,0,0,0.35); }

/* ═══════════════════════════════════════ AMENITIES */
.d07t0_amenities-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.d07t0_amenities-image { aspect-ratio: 4/5; border-radius: 22px; background-size: cover; background-position: center; }
.d07t0_amenities-list { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.d07t0_amenities-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; color: var(--text-body); }
.d07t0_amenities-list li:last-child { border-bottom: none; }
.d07t0_amenities-list .d07t0_dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-flat); flex-shrink: 0; }

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

/* ═══════════════════════════════ INTERLUDE (bento cells, full-bleed) */
.d07t0_interlude-section { padding: 40px 0; }
.d07t0_interlude-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.d07t0_interlude-item { border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; }
.d07t0_interlude-item img { transition: transform 0.5s ease; }
.d07t0_interlude-item:hover img { transform: scale(1.05); }

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

/* ═══════════════════════════════════════════ CONTACT */
.d07t0_contact-section { background: var(--c-bg); }
.d07t0_contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.d07t0_contact-details { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.d07t0_contact-item { display: flex; align-items: center; gap: 14px; color: var(--text-secondary); font-size: 0.92rem; }
.d07t0_contact-icon { display: none; }
.d07t0_contact-item a:hover { color: var(--gold-flat); }
.d07t0_contact-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.d07t0_hotel-map { aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; isolation: isolate; }
.d07t0_map-pin { width: 40px; height: 40px; background: var(--gold-flat); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--md-sys-color-on-primary, #fff); font-size: 18px; border: 2px solid var(--c-bg); }
.leaflet-popup-content-wrapper { background: var(--c-s2) !important; border-radius: 16px !important; box-shadow: none !important; color: var(--text-body) !important; }
.leaflet-popup-content-wrapper strong { color: var(--gold-flat); }
.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(--gold-flat) !important; border-radius: 10px !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 */
.d07t0_footer { background: var(--c-bg); border-top: 1px solid var(--hairline); }
.d07t0_footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px; max-width: var(--container-max); margin: 0 auto; }
.d07t0_footer-logo { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; }
.d07t0_footer-brand p { font-family: var(--font-ui); font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; max-width: 240px; }
.d07t0_footer-links h4 { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--gold-flat); margin-bottom: 16px; }
.d07t0_footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.d07t0_footer-links a { font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); transition: var(--ease); }
.d07t0_footer-links a:hover { color: var(--gold-flat); }
.d07t0_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; }
.d07t0_footer-bottom p { font-family: var(--font-ui); font-size: 12px; color: var(--text-secondary); }
.d07t0_gambling-notice { font-size: 11px !important; }

/* ══════════════════════════════════ COOKIE BANNER */
.d07t0_cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 999; background: var(--c-s1); border-radius: 22px; padding: 18px 22px; transition: transform 0.3s ease, opacity 0.3s ease; max-width: 900px; margin: 0 auto; }
.d07t0_cookie-banner.hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.d07t0_cookie-banner-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.d07t0_cookie-banner-text { flex: 1; font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); line-height: 1.6; min-width: 240px; }
.d07t0_cookie-banner-text strong { color: var(--text-heading); }
.d07t0_cookie-banner-text a { color: var(--gold-flat); text-decoration: underline; }
.d07t0_cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.d07t0_cookie-btn-accept, .d07t0_cookie-btn-reject { padding: 10px 20px; border-radius: 100px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; cursor: pointer; border: none; transition: var(--ease); }
.d07t0_cookie-btn-accept { background: var(--gold-flat); color: var(--md-sys-color-on-primary, #fff); }
.d07t0_cookie-btn-accept:hover { opacity: 0.88; }
.d07t0_cookie-btn-reject { background: color-mix(in srgb, var(--text-heading) 10%, transparent); color: var(--text-heading); }

/* ═══════════════════════════════ LEGAL / COMPLIANCE PAGES */
.d07t0_legal-page { padding: 130px 0 90px; min-height: 80vh; }
.d07t0_legal-header { margin-bottom: 40px; }
.d07t0_legal-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.d07t0_legal-meta { font-family: var(--font-ui); font-size: 13px; color: var(--text-secondary); }
.d07t0_legal-notice { background: var(--c-s1); border-radius: 18px; border-left: 4px solid var(--gold-flat); padding: 20px 24px; margin-bottom: 40px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.d07t0_legal-notice--warning { border-left-color: #C0524A; }
.d07t0_legal-notice--warning strong { color: #D68880; }
.d07t0_legal-warning { background: var(--c-s1); border-radius: 18px; border-left: 4px solid #C0524A; padding: 20px 24px; margin: 16px 0 24px; font-size: 0.95rem; color: #D68880; line-height: 1.6; }
.d07t0_legal-section { margin-bottom: 44px; }
.d07t0_legal-section h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-heading); margin-bottom: 14px; }
.d07t0_legal-section h3 { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; color: var(--text-heading); margin: 22px 0 10px; }
.d07t0_legal-section p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.d07t0_legal-section a { color: var(--gold-flat); text-decoration: underline; }
.d07t0_legal-section ul, .d07t0_legal-section ol { margin: 12px 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.d07t0_legal-section ul { list-style: disc; }
.d07t0_legal-section ol { list-style: decimal; }
.d07t0_legal-section li { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.d07t0_legal-box { background: var(--c-s1); border-radius: 18px; padding: 20px 24px; margin: 16px 0 24px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.d07t0_table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; box-shadow: inset -12px 0 8px -8px rgba(0,0,0,0.18); }
.d07t0_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); border-radius: 14px; overflow: hidden; }
.d07t0_legal-table thead th { padding: 10px 14px; text-align: left; font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--gold-flat); background: var(--c-s2); border-bottom: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
.d07t0_legal-table thead th:last-child { border-right: none; }
.d07t0_legal-table tbody tr:nth-child(even) { background: var(--c-s2); }
.d07t0_legal-table tbody td { padding: 10px 14px; color: var(--text-secondary); vertical-align: top; border-bottom: 1px solid var(--hairline); border-right: 1px solid var(--hairline); }
.d07t0_legal-table tbody td:last-child { border-right: none; }
.d07t0_legal-table tbody tr:last-child td { border-bottom: none; }
.d07t0_helplines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0; }
.d07t0_helpline-card { background: var(--c-s1); border-radius: 18px; padding: 22px 20px; }
.d07t0_helpline-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-heading); margin: 0 0 8px; }
.d07t0_helpline-card p { font-family: var(--font-ui); font-size: 0.85rem; margin-bottom: 4px; color: var(--text-secondary); }
.d07t0_helpline-card strong { color: var(--gold-flat); }
.d07t0_helpline-card a { font-size: 0.85rem; color: var(--gold-flat); text-decoration: underline; }
.d07t0_footer-legal-id { font-size: 0.75rem !important; color: var(--text-secondary) !important; margin-top: 8px !important; }

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

/* ═══════════════════════════════════ SERVICE PAGES */
.d07t0_service-page { padding-top: 80px; }
.d07t0_service-hero { position: relative; height: 380px; background-size: cover; background-position: center; display: flex; align-items: flex-end; margin: 16px; border-radius: 26px; overflow: hidden; }
/* .d07t0_service-hero-content h1 already uses the strong --text-heading color, so
   this scrim doesn't need to be near-opaque to keep it legible — 85% was
   covering most of the photo behind it. */
.d07t0_service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, color-mix(in srgb, var(--c-bg) 55%, transparent) 0%, transparent 60%); }
.d07t0_service-hero-content { position: relative; z-index: 1; padding: 32px; }
.d07t0_service-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--text-heading); margin-top: 8px; }
.d07t0_service-body { padding: 56px 24px 100px; max-width: var(--container-max); margin: 0 auto; }
.d07t0_service-intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; margin-bottom: 52px; }
.d07t0_service-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }
.d07t0_service-intro-image { aspect-ratio: 4/3; border-radius: 22px; overflow: hidden; }
.d07t0_service-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 52px; }
.d07t0_service-feature-card { background: var(--c-s1); border-radius: 20px; padding: 24px 20px; transition: var(--ease); }
.d07t0_service-feature-card:hover { background: var(--c-s2); }
.d07t0_service-feature-icon { display: none; }
.d07t0_service-feature-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-heading); margin-bottom: 8px; }
.d07t0_service-feature-card p { font-family: var(--font-ui); font-size: 0.87rem; color: var(--text-secondary); line-height: 1.6; }
.d07t0_service-cta-block { text-align: center; padding-top: 12px; }
.d07t0_service-cta-btn { display: inline-block; padding: 16px 40px; background: var(--gold-flat); color: var(--md-sys-color-on-primary, #fff); border: none; border-radius: 100px; font-family: var(--font-ui); font-size: 13px; font-weight: 700; cursor: pointer; }
.d07t0_service-cta-btn:hover { opacity: 0.88; }

@media (max-width: 860px) {
  .d07t0_service-features { grid-template-columns: 1fr 1fr; }
  .d07t0_bento, .d07t0_rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .d07t0_interlude-grid { grid-template-columns: repeat(2, 1fr); }
  .d07t0_cell.d07t0_wide, .d07t0_cell.d07t0_tall.d07t0_wide { grid-column: span 2; }
}
@media (max-width: 768px) {
  .d07t0_service-intro-grid { grid-template-columns: 1fr; gap: 26px; }
  .d07t0_bm-row { grid-template-columns: 1fr; }
  .d07t0_bm-dialog { padding: 30px 22px; }
}
@media (max-width: 480px) {
  .d07t0_service-features { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .d07t0_about-grid, .d07t0_dining-grid, .d07t0_contact-grid, .d07t0_amenities-layout, .d07t0_casino-grid { grid-template-columns: 1fr; gap: 40px; }
  .d07t0_about-image-group, .d07t0_amenities-image { order: -1; }
  .d07t0_footer-inner { grid-template-columns: 1fr 1fr; }
  .d07t0_hero-layout { grid-template-columns: 1fr; gap: 40px; }
}

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

  .d07t0_nav-inner    { position: relative; justify-content: space-between; gap: 0; }
  .d07t0_nav-burger   { display: flex; order: 0; flex-shrink: 0; }
  .d07t0_nav-logo     { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 1rem; }
  .d07t0_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;
  }
  .d07t0_nav-links.open { display: flex; }
  .d07t0_nav-links li   { width: 100%; text-align: center; }
  .d07t0_nav-links a    { display: block; padding: 14px; }
  .d07t0_nav-cta        { display: none; }

  .d07t0_bento, .d07t0_rooms-grid, .d07t0_interlude-grid { grid-template-columns: 1fr; }
  .d07t0_cell.d07t0_wide, .d07t0_cell.d07t0_tall, .d07t0_cell.d07t0_tall.d07t0_wide { grid-column: span 1; grid-row: span 1; }
  .d07t0_hero-highlights { grid-template-columns: 1fr; }
  .d07t0_footer-inner    { grid-template-columns: 1fr 1fr; gap: 28px; }
  .d07t0_footer-bottom   { flex-direction: column; text-align: center; }
  .d07t0_casino-features { grid-template-columns: 1fr; }
  .d07t0_about-stats     { flex-wrap: wrap; }

  .d07t0_about-image-inset, .d07t0_dining-image-inset { position: static; width: 60%; margin: -20px 0 0 auto; }
}

/* 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) {
  .d07t0_helplines-grid  { grid-template-columns: 1fr 1fr; }
  .d07t0_legal-page      { padding: 100px 0 60px; }
}

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

.table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrap table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.table-wrap th,
.table-wrap td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    white-space: normal;
}

@media (max-width: 768px) {
    .table-wrap {
        margin-inline: -16px;
        padding-inline: 16px;
    }

    .table-wrap table {
        min-width: 680px;
    }

    .table-wrap th,
    .table-wrap td {
        font-size: 14px;
        line-height: 1.45;
        padding: 12px;
    }
}