  :root {
    --gold: #b8975a;
    --gold-light: #d4b483;
    --dark: #0e0e0e;
    --charcoal: #1a1a1a;
    --sand: #f5f0e8;
    --warm-white: #faf8f4;
    --text-muted: #888;
    --nav-height: 80px;
    --nav-height-mobile-open: 64px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 40px;
    transition: background 0.4s, backdrop-filter 0.4s, height 0.25s ease, padding 0.25s ease;
  }
  nav.scrolled {
    background: rgba(14,14,14,0.95);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    color: #fff; text-decoration: none;
    display: inline-flex; align-items: center;
    line-height: 1;
    flex-shrink: 0;
  }
  .nav-logo-mark {
    display: block;
    width: 60px;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    transition: width 0.25s ease;
  }
  .nav-logo span {
    display: none;
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 300; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold-light); }

  .nav-right { display: flex; align-items: center; gap: 20px; }

  /* Language selector */
  .lang-selector {
    position: relative;
  }
  .lang-btn {
    background: none; border: 1px solid rgba(255,255,255,0.3);
    color: #fff; padding: 6px 14px; cursor: pointer;
    font-family: 'Jost'; font-size: 0.68rem; letter-spacing: 0.15em;
    text-transform: uppercase; transition: border-color 0.3s;
    display: flex; align-items: center; gap: 6px;
  }
  .lang-btn:hover { border-color: var(--gold); }
  .lang-btn::after { content: '▾'; font-size: 0.6rem; }
  .lang-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--charcoal); min-width: 130px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .lang-dropdown.open { display: block; }
  .lang-dropdown button, .lang-dropdown a {
    text-decoration:none;
    display: block; width: 100%; background: none; border: none;
    color: rgba(255,255,255,0.75); padding: 10px 16px; text-align: left;
    cursor: pointer; font-family: 'Jost'; font-size: 0.7rem;
    letter-spacing: 0.1em; transition: background 0.2s, color 0.2s;
  }
  .lang-dropdown button:hover, .lang-dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--gold-light); }
  .lang-dropdown button.active, .lang-dropdown a.active { color: var(--gold); }

  /* RTL for Hebrew */
  body.rtl { direction: rtl; }
  body.rtl nav { flex-direction: row-reverse; }
  body.rtl .nav-links { flex-direction: row-reverse; }

  .book-btn {
    background: var(--gold); color: #fff; border: none;
    padding: 12px 24px; font-family: 'Jost'; font-size: 0.68rem;
    letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.3s;
  }
  .book-btn:hover { background: var(--gold-light); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 1.5px; background: #fff;
    transition: all 0.35s;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile Menu */
  .mobile-menu {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: rgba(14,14,14,0.98); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; padding: 40px;
    transition: top 0.25s ease;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu > a:not(.book-btn) {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-family: 'Cormorant Garamond'; font-size: 2rem; font-weight: 300;
    letter-spacing: 0.1em; transition: color 0.3s;
  }
  .mobile-menu > a:not(.book-btn):hover { color: var(--gold-light); }
  .mobile-menu .book-btn {
    margin-top: 8px !important;
    min-width: 240px;
    padding: 14px 28px;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    line-height: 1.2;
  }
  .mobile-lang { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
  .mobile-lang button, .mobile-lang a {
    text-decoration: none; display: inline-block;
    background: none; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
    padding: 7px 14px; cursor: pointer; font-family: 'Jost'; font-size: 0.65rem;
    letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s;
  }
  .mobile-lang button:hover, .mobile-lang button.active, .mobile-lang a:hover, .mobile-lang a.active { border-color: var(--gold); color: var(--gold); }

  /* ─── HERO ─── */
  .hero {
    height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(10, 18, 24, 0.34) 0%, rgba(8, 16, 24, 0.16) 45%, rgba(12, 10, 8, 0.28) 100%),
      url("images/cabu_hotel (5).jpg") center center / cover no-repeat;
    transform: scale(1.02);
  }
  .hero-video {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    filter: blur(1.8px) brightness(0.72) saturate(0.95);
    transform: scale(1.08);
    transition: opacity 0.6s ease;
  }
  .hero-bg.video-ready .hero-video {
    opacity: 1;
  }

  img[loading="lazy"] {
    content-visibility: auto;
  }
  @media (max-width: 991px), (pointer: coarse) {
    .hero-video {
      display: none;
    }
    .hero-bg.video-ready .hero-video {
      opacity: 0;
    }
  }
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse at 20% 45%, rgba(184,151,90,0.08) 0%, transparent 46%),
      radial-gradient(ellipse at 82% 18%, rgba(10,30,48,0.16) 0%, transparent 42%),
      linear-gradient(to bottom, rgba(6,12,18,0.22) 0%, rgba(6,12,18,0.06) 38%, rgba(6,12,18,0.34) 100%);
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(8,14,20,0.10) 0%, rgba(8,14,20,0) 22%, rgba(8,14,20,0) 78%, rgba(8,14,20,0.12) 100%);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(14,14,14,0.16) 0%, rgba(14,14,14,0.04) 50%, rgba(14,14,14,0.38) 100%);
  }
  .hero-content {
    position: relative; z-index: 3;
    text-align: center; color: #fff; padding: 0 20px;
    max-width: 900px;
  }
  .hero-star {
    font-size: 0.65rem; letter-spacing: 0.5em; color: var(--gold-light);
    text-transform: uppercase; font-weight: 300; margin-bottom: 24px;
    display: block;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 7rem); font-weight: 300; line-height: 1;
    letter-spacing: 0.02em; margin-bottom: 12px;
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 0.75rem; letter-spacing: 0.35em; color: rgba(255,255,255,0.6);
    text-transform: uppercase; font-weight: 300; margin-bottom: 48px;
    display: block;
  }
  .hero-cta {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--gold); color: #fff; padding: 16px 40px;
    text-decoration: none; font-size: 0.7rem; letter-spacing: 0.25em;
    text-transform: uppercase; font-weight: 400; transition: background 0.3s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.5); color: #fff; padding: 16px 40px;
    text-decoration: none; font-size: 0.7rem; letter-spacing: 0.25em;
    text-transform: uppercase; font-weight: 400; transition: all 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-scroll {
    z-index: 3;
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4); font-size: 0.6rem; letter-spacing: 0.3em;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

  /* ─── SECTIONS ─── */
  section { padding: 100px 40px; }

  .section-label {
    font-size: 0.6rem; letter-spacing: 0.5em; color: var(--gold);
    text-transform: uppercase; font-weight: 400; margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15;
    color: var(--dark);
  }
  .section-title em { font-style: italic; color: var(--gold); }

  .divider {
    width: 60px; height: 1px; background: var(--gold); margin: 28px 0;
  }

  /* ─── ABOUT ─── */
  .about { background: var(--warm-white); }
  .about-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-text p {
    font-size: 1.05rem; line-height: 1.85; color: #444; font-weight: 300;
    margin-bottom: 20px;
  }
  .about-visual {
    position: relative; height: 500px;
  }
  .about-img-main {
    position: absolute; inset: 0;
    background-color: #1a2a3a;
    background-image: url("images/cabu_hotel (16).jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
  }
  .about-img-main .about-visual-icon-wrap {
    display: none;
  }
  .about-img-main::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 60%, rgba(184,151,90,0.2), transparent 70%);
  }
  .about-badge {
    position: absolute; bottom: -20px; right: -20px;
    width: 140px; height: 140px;
    background: var(--gold); display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    color: #fff;
  }
  .about-badge strong {
    font-family: 'Cormorant Garamond'; font-size: 2.5rem; font-weight: 300; line-height: 1;
  }
  .about-badge span { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }

  /* ─── ROOMS ─── */
  .rooms { background: var(--sand); }
  .rooms-header { max-width: 1200px; margin: 0 auto 60px; }
  .rooms-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  }
  .room-card {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 3/4; background: var(--charcoal);
    transition: transform 0.4s;
  }
  .room-card:hover { transform: scale(1.01); z-index: 1; }
  .room-card-img {
    position: absolute; inset: 0;
    transition: transform 0.6s;
  }
  .room-card-img-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a2a3a, #2a1a3a);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .room-card-image {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.38s ease;
    will-change: opacity;
  }
  .room-card.is-loaded .room-card-image { opacity: 1; }
  /* Placeholder visuals for room cards */
  .room-card:nth-child(1) .room-card-img-inner { background: linear-gradient(160deg,#1a3040,#0d1e2e); }
  .room-card:nth-child(2) .room-card-img-inner { background: linear-gradient(160deg,#2a2a1a,#1e2a0d); }
  .room-card:nth-child(3) .room-card-img-inner { background: linear-gradient(160deg,#2a1a1a,#1e0d1a); }
  .room-card:nth-child(4) .room-card-img-inner { background: linear-gradient(160deg,#1a2a2a,#0d1e1a); }
  .room-card:nth-child(5) .room-card-img-inner { background: linear-gradient(160deg,#2a1a2a,#1e0d2a); }
  .room-card:nth-child(6) .room-card-img-inner { background: linear-gradient(160deg,#1a2010,#0d1e0a); }

  .room-placeholder-icon { font-size: 4rem; opacity: 0.15; }
  .room-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px; color: #fff;
  }
  .room-card-label {
    font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold-light);
    text-transform: uppercase; margin-bottom: 8px;
  }
  .room-card-title {
    font-family: 'Cormorant Garamond'; font-size: 1.5rem; font-weight: 300;
    line-height: 1.2; margin-bottom: 10px;
  }
  .room-card-teaser {
    font-size: 0.72rem; color: rgba(255,255,255,0.65); line-height: 1.5;
    font-weight: 300; margin-bottom: 16px;
  }
  .room-card-cta {
    font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-light); display: flex; align-items: center; gap: 8px;
    font-weight: 400;
  }
  .room-card-cta::after { content: '→'; transition: transform 0.3s; }
  .room-card:hover .room-card-cta::after { transform: translateX(5px); }

  /* ─── ROOM DETAIL MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
    overflow-y: auto;
  }
  .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 40px 20px; }
  .modal {
    background: var(--warm-white); width: 100%; max-width: 1000px;
    position: relative; animation: modalIn 0.4s ease;
  }
  @keyframes modalIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  .modal-close {
    position: absolute; top: 20px; right: 20px; z-index: 10;
    background: rgba(0,0,0,0.5); border: none; color: #fff; width: 40px; height: 40px;
    cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
  }
  .modal-close:hover { background: var(--gold); }

  /* Carousel inside modal */
  .carousel {
    position: relative; overflow: hidden; background: var(--charcoal);
    aspect-ratio: 16/9;
  }
  .carousel-track {
    display: flex; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    height: 100%;
  }
  .carousel-slide {
    min-width: 100%; height: 100%; position: relative; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .carousel-slide-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,0.08);
  }
  .carousel-slide-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Different bg for each slide */
  .slide-bg-1 { background: linear-gradient(135deg,#1a3040,#0d1e2e); }
  .slide-bg-2 { background: linear-gradient(135deg,#2a1a10,#1a0d0a); }
  .slide-bg-3 { background: linear-gradient(135deg,#1a2a1a,#0a1a0d); }
  .slide-bg-4 { background: linear-gradient(135deg,#2a2010,#1a150a); }
  .slide-bg-5 { background: linear-gradient(135deg,#10202a,#0a1520); }
  .carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; width: 46px; height: 46px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: all 0.3s; z-index: 5;
  }
  .carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
  .carousel-btn.prev { left: 16px; }
  .carousel-btn.next { right: 16px; }
  .carousel-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 6px;
  }
  .dot {
    width: 6px; height: 6px; background: rgba(255,255,255,0.4);
    border-radius: 50%; transition: background 0.3s; cursor: pointer;
  }
  .dot.active { background: var(--gold); }
  .carousel-expand {
    position: absolute; bottom: 16px; right: 16px;
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; width: 36px; height: 36px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
    transition: all 0.3s;
  }
  .carousel-expand:hover { background: var(--gold); }

  /* Mobile swipe for carousel */
  .carousel { touch-action: pan-y; }

  /* Lightbox */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 3000;
    background: rgba(0,0,0,0.96); align-items: center; justify-content: center;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
  }
  .lightbox-img {
    max-width: 80vw; max-height: 80vh;
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; color: rgba(255,255,255,0.06);
    min-width: 300px; min-height: 200px;
  }
  .lightbox-slide {
    display: flex; align-items: center; justify-content: center;
    width: 80vw; height: 60vh;
  }
  .lightbox-slide-image {
    display: block;
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .lightbox-btn {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; width: 52px; height: 52px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.3s; z-index: 10;
  }
  .lightbox-btn:hover { background: var(--gold); border-color: var(--gold); }
  .lightbox-btn.prev { left: 30px; }
  .lightbox-btn.next { right: 30px; }
  .lightbox-close {
    position: fixed; top: 24px; right: 30px;
    background: none; border: 1px solid rgba(255,255,255,0.25); color: #fff;
    width: 44px; height: 44px; cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; z-index: 10;
    transition: all 0.3s;
  }
  .lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
  .lightbox-counter {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 0.2em;
  }
  /* Click outside to close: lightbox overlay is the backdrop */

  .modal-body { padding: 48px; }
  .modal-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
  }
  .modal-header-left .room-label {
    font-size: 0.6rem; letter-spacing: 0.4em; color: var(--gold);
    text-transform: uppercase; margin-bottom: 8px; display: block;
  }
  .modal-header-left h2 {
    font-family: 'Cormorant Garamond'; font-size: 2.2rem; font-weight: 300;
  }
  .room-price { text-align: right; }
  .room-price .from { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; }
  .room-price .price { font-family: 'Cormorant Garamond'; font-size: 2rem; font-weight: 300; color: var(--gold); }
  .room-price .per { font-size: 0.65rem; color: var(--text-muted); }

  .modal-desc { font-size: 0.98rem; line-height: 1.9; color: #444; font-weight: 300; margin-bottom: 36px; }

  .amenities-title {
    font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px; font-weight: 400;
  }
  .amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 10px; margin-bottom: 36px;
  }
  .amenity {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; color: #555; font-weight: 300;
  }
  .amenity-icon { color: var(--gold); font-size: 0.9rem; min-width: 16px; }

  .room-specs {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
    gap: 0; border-top: 1px solid #e5e0d8; border-left: 1px solid #e5e0d8;
    margin-bottom: 36px;
  }
  .spec {
    padding: 20px; border-right: 1px solid #e5e0d8; border-bottom: 1px solid #e5e0d8;
    text-align: center;
  }
  .spec-value { font-family: 'Cormorant Garamond'; font-size: 1.8rem; font-weight: 300; color: var(--gold); }
  .spec-label { font-size: 0.62rem; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }

  .modal-footer { display: flex; gap: 14px; flex-wrap: wrap; }

  /* ─── EXPERIENCES ─── */
  .experiences { background: var(--dark); color: #fff; }
  .exp-inner { max-width: 1200px; margin: 0 auto; }
  .exp-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
    background: rgba(255,255,255,0.05); margin-top: 60px;
  }
  .exp-item {
    background: var(--dark); padding: 48px 36px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s;
  }
  .exp-item:hover { background: rgba(184,151,90,0.05); }
  .exp-num { font-family: 'Cormorant Garamond'; font-size: 4rem; font-weight: 300; color: rgba(184,151,90,0.2); line-height: 1; margin-bottom: 16px; }
  .exp-item h3 { font-family: 'Cormorant Garamond'; font-size: 1.6rem; font-weight: 300; margin-bottom: 14px; }
  .exp-item p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.5); font-weight: 300; }
  .exp-divider { width: 40px; height: 1px; background: var(--gold); margin: 18px 0; }
  .exp-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 20px; }
  .exp-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; line-height: 1.6; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.68); }
  .exp-meta i { color: var(--gold); font-size: 0.85rem; }

  /* ─── DINING ─── */
  .dining { background: var(--sand); }
  .dining-inner { max-width: 1200px; margin: 0 auto; }
  .dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 60px; }
  .dining-visual {
    aspect-ratio: 4/5; background: linear-gradient(160deg, #2a1a0a, #1a0d0a);
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; color: rgba(184,151,90,0.1);
    position: relative;
  }
  .dining-visual::after {
    content: ''; position: absolute; bottom: -30px; right: -30px;
    width: 60%; height: 40%; background: var(--gold); opacity: 0.06;
  }

  .dining-visual-media {
    padding: 0;
    background: none;
    overflow: hidden;
    font-size: 0;
  }
  .dining-visual-media::after {
    display: none;
  }
  .dining-visual-image,
  .venue-media-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .venue-media-has-image {
    padding: 0;
    overflow: hidden;
  }
  .venue-media-has-image .venue-media-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .dining-text h3 { font-family: 'Cormorant Garamond'; font-size: 2rem; font-weight: 300; margin-bottom: 20px; }
  .dining-text p { font-size: 0.92rem; line-height: 1.9; color: #555; font-weight: 300; margin-bottom: 24px; }

  .dining-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 36px;
  }
  .btn-secondary {
    border: 1px solid rgba(14,14,14,0.18);
    color: var(--dark);
    padding: 14px 28px;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.3s;
    display: inline-block;
    background: rgba(255,255,255,0.35);
  }
  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,151,90,0.08);
  }
  .menu-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
  }
  .menu-card {
    position: relative;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(14,14,14,0.08);
    padding: 34px;
    overflow: hidden;
  }
  .menu-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at top right, rgba(184,151,90,0.12), transparent 68%);
    pointer-events: none;
  }
  .menu-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .menu-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 12px;
  }
  .menu-card > p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: #555;
    font-weight: 300;
    margin-bottom: 26px;
    max-width: 560px;
  }
  .dining-card-stack {
    display: grid;
    gap: 24px;
    align-content: start;
  }
  .dining-card-stack .menu-card {
    height: 100%;
  }
  .dining-card-stack .menu-card > p {
    max-width: none;
  }
  .menu-list {
    display: grid;
    gap: 24px;
  }
  .menu-block h4 {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
  }
  .menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(14,14,14,0.08);
  }
  .menu-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    line-height: 1.25;
    color: var(--dark);
  }
  .menu-price {
    color: var(--gold);
    white-space: nowrap;
    direction: ltr;
    unicode-bidi: isolate;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }


  /* ─── CTA BANNER ─── */
  .cta-banner {
    background: var(--charcoal); padding: 100px 40px; text-align: center; color: #fff;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,151,90,0.08) 0%, transparent 70%);
  }
  .cta-banner-inner { position: relative; max-width: 700px; margin: 0 auto; }
  .cta-banner h2 { font-family: 'Cormorant Garamond'; font-size: clamp(2rem,5vw,3.5rem); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
  .cta-banner p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.8; font-weight: 300; margin-bottom: 36px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--dark); color: rgba(255,255,255,0.5);
    padding: 80px 40px 40px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand-logo {
    display: block;
    width: 132px;
    height: auto;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .footer-brand .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.7rem; margin-bottom: 16px; }
  .footer-brand p { font-size: 0.78rem; line-height: 1.8; max-width: 280px; }
  .footer-col h4 { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 400; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; font-weight: 300; }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-col p { font-size: 0.8rem; line-height: 1.8; font-weight: 300; }
  .footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-bottom p { font-size: 0.7rem; }
  .footer-bottom a { color: var(--gold); text-decoration: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2,1fr); }
    .exp-grid { grid-template-columns: repeat(2,1fr); }
    .menu-showcase { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-logo-mark { width: 52px; }
    .footer-brand-logo { width: 118px; }
    body.mobile-menu-open { --nav-height: var(--nav-height-mobile-open); }
    body.mobile-menu-open nav { padding: 0 16px; }
    body.mobile-menu-open .nav-logo-mark { width: 42px; }
    .nav-links, .nav-right { display: none; }
    .hamburger { display: flex; }
    section { padding: 70px 20px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { height: 300px; overflow: hidden; }
    .about-badge { bottom: 12px; right: 12px; width: 110px; height: 110px; }
    .about-badge strong { font-size: 2rem; }
    .rooms-grid { grid-template-columns: 1fr; gap: 2px; }
    .room-card { aspect-ratio: 4/3; }
    .exp-grid { grid-template-columns: 1fr; }
    .dining-grid { grid-template-columns: 1fr; gap: 40px; }
    .dining-visual { overflow: hidden; }
    .dining-visual::after { bottom: 0; right: 0; }
    .dining-actions { flex-direction: column; align-items: flex-start; }
    .menu-card { padding: 26px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .modal-body { padding: 24px; }
    .modal-header { flex-direction: column; }
    .room-price { text-align: left; }
    .lightbox-btn.prev { left: 10px; }
    .lightbox-btn.next { right: 10px; }
    .hero h1 { font-size: clamp(2.5rem,10vw,4rem); }
    .carousel-btn { width: 36px; height: 36px; font-size: 0.85rem; }
  }

  @media (max-width: 480px) {
    .modal-overlay { padding: 0; }
    .modal { min-height: 100vh; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .room-specs { grid-template-columns: repeat(2,1fr); }
    .menu-item { gap: 12px; }
    .menu-item-name { font-size: 1.05rem; }
  }


  @media (max-width: 430px), (max-height: 820px) {
    .mobile-menu {
      gap: 22px;
      padding: 28px 20px calc(22px + env(safe-area-inset-bottom));
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .mobile-menu > a:not(.book-btn) {
      font-size: clamp(1.6rem, 7vw, 1.9rem);
      letter-spacing: 0.08em;
    }
    .mobile-menu .book-btn {
      min-width: min(100%, 300px);
      padding: 13px 20px;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      margin-top: 4px !important;
    }
    .mobile-lang {
      gap: 10px;
      margin-top: 10px;
    }
    .mobile-lang button,
    .mobile-lang a {
      padding: 6px 12px;
      font-size: 0.6rem;
    }
  }

  @media (max-width: 390px), (max-height: 760px) {
    .mobile-menu {
      gap: 16px;
      padding: 20px 16px calc(18px + env(safe-area-inset-bottom));
    }
    .mobile-menu > a:not(.book-btn) {
      font-size: clamp(1.4rem, 6.6vw, 1.7rem);
    }
    .mobile-menu .book-btn {
      min-width: min(100%, 280px);
      padding: 12px 18px;
      font-size: 0.58rem;
    }
    .mobile-lang {
      gap: 8px;
    }
  }

  /* Animation helpers */
  .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  html.js-ready .fade-up {
    opacity: 0;
    transform: translateY(30px);
  }
  html.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* Gold line decoration */
  .gold-line { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
  .gold-line::before, .gold-line::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
  .gold-line-icon { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; white-space: nowrap; }



/* ─── POLICY PAGES ─── */
.policy-page {
  min-height: 100vh;
  background: var(--warm-white);
  color: var(--dark);
}
.policy-hero {
  background: linear-gradient(135deg, #1a2a1a 0%, #0e1e2a 50%, #2a1a0e 100%);
  color: #fff;
  padding: 150px 20px 80px;
  position: relative;
  overflow: hidden;
}
.policy-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,151,90,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(30,60,80,0.3) 0%, transparent 50%);
}
.policy-hero-inner,
.policy-content,
.policy-footer-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.policy-kicker {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.policy-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 18px;
}
.policy-hero p {
  max-width: 720px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
}
.policy-breadcrumb {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.policy-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
}
.policy-breadcrumb a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.policy-section {
  padding: 70px 20px;
}
.policy-card {
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2,6,23,.06);
  padding: 42px;
}
.policy-card + .policy-card {
  margin-top: 24px;
}
.policy-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 18px;
  color: var(--dark);
}
.policy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 300;
  margin: 28px 0 12px;
  color: var(--dark);
}
.policy-card p,
.policy-card li {
  font-size: 0.96rem;
  line-height: 1.95;
  color: #444;
  font-weight: 300;
}
.policy-card ul {
  padding-left: 20px;
  margin: 12px 0 0;
}
.policy-card strong {
  color: var(--dark);
  font-weight: 500;
}
.policy-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(184,151,90,0.08);
}
.policy-footer {
  padding: 0 20px 50px;
}
.policy-footer-box {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  border-radius: 24px;
  padding: 30px 32px;
}
.policy-footer-box p {
  line-height: 1.85;
  font-size: 0.9rem;
  font-weight: 300;
}
.policy-footer-box a {
  color: var(--gold-light);
  text-decoration: none;
}
.policy-footer-box a:hover {
  color: #fff;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-legal-links span {
  color: rgba(255,255,255,0.2);
}

/* ─── COOKIE CONSENT ─── */
.consent-banner,
.consent-modal {
  font-family: 'Jost', sans-serif;
}
.consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 4000;
  background: rgba(14,14,14,0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  padding: 22px 24px;
  display: none;
}
.consent-banner.show {
  display: block;
}
.consent-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 20px;
  align-items: center;
}
.consent-title {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.consent-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
}
.consent-text a {
  color: var(--gold-light);
  text-decoration: none;
}
.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.consent-btn {
  min-height: 46px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #fff;
  transition: all 0.25s ease;
}
.consent-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.consent-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
}
.consent-btn.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}
.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  z-index: 4100;
  display: none;
}
.consent-overlay.open {
  display: block;
}
.consent-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--warm-white);
  z-index: 4200;
  display: none;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.consent-modal.open {
  display: block;
}
.consent-modal-header {
  padding: 28px 28px 10px;
}
.consent-modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
}
.consent-modal-header p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  font-weight: 300;
}
.consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: var(--dark);
  cursor: pointer;
  font-size: 1rem;
}
.consent-groups {
  padding: 0 28px 12px;
}
.consent-group {
  border-top: 1px solid #e8e1d7;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.consent-group:first-child {
  border-top: 1px solid #e8e1d7;
}
.consent-group h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 400;
}
.consent-group p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
}
.consent-switch {
  position: relative;
  width: 58px;
  height: 32px;
}
.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.consent-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #d3cec6;
  transition: 0.25s;
}
.consent-slider::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  background: #fff;
  transition: 0.25s;
}
.consent-slider,
.consent-slider::before {
  border-radius: 999px;
}
.consent-switch input:checked + .consent-slider {
  background: var(--gold);
}
.consent-switch input:checked + .consent-slider::before {
  transform: translateX(26px);
}
.consent-switch input:disabled + .consent-slider {
  background: #222;
  opacity: 0.7;
  cursor: not-allowed;
}
.consent-modal-footer {
  padding: 18px 28px 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .policy-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .policy-footer-box {
    padding: 24px 22px;
  }
  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }
  .consent-banner-inner {
    grid-template-columns: 1fr;
  }
  .consent-actions {
    justify-content: stretch;
  }
  .consent-actions .consent-btn {
    flex: 1 1 auto;
  }
  .consent-modal-header,
  .consent-groups,
  .consent-modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .consent-group {
    grid-template-columns: 1fr;
  }
}


/* ─── FA ICON ENHANCEMENTS ─── */
.footer-link-icon,
.contact-fa-icon {
  color: var(--gold);
}
.footer-link-icon {
  width: 18px;
  margin-right: 10px;
  text-align: center;
}
.contact-fa-icon {
  margin-right: 10px;
  min-width: 16px;
}
.footer-contact-col p,
.policy-contact-item p {
  margin: 0;
}
.contact-detail-block + .contact-detail-block {
  margin-top: 18px;
}
.contact-detail-label,
.policy-contact-label,
.consent-chip-label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 400;
}
.about-visual-icon-wrap {
  width: 100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.site-ghost-icon {
  color: rgba(184,151,90,0.1);
}
.site-ghost-icon-xl {
  font-size: 8rem;
}
.site-ghost-icon-lg {
  font-size: 6rem;
}
.carousel-slide-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
}
.lightbox-slide-icon {
  font-size: 10rem;
  color: rgba(255,255,255,0.06);
}
.amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}
.gold-line-icon i {
  color: var(--gold);
}
.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.policy-contact-item {
  padding: 18px 20px;
  border: 1px solid #ece4d8;
  background: linear-gradient(180deg, #fff, #fbf8f3);
}
.consent-contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 16px;
}
.consent-contact-chip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}
.consent-contact-chip a,
.consent-contact-chip span:last-child {
  color: rgba(255,255,255,0.84);
  text-decoration: none;
  font-size: 0.82rem;
}
.consent-modal-contact {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.consent-modal-contact-item {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e8e1d7;
}
.consent-modal-contact-item a,
.consent-modal-contact-item span:last-child {
  color: #555;
  text-decoration: none;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .policy-contact-grid,
  .consent-modal-contact {
    grid-template-columns: 1fr;
  }
  .site-ghost-icon-xl {
    font-size: 5.5rem;
  }
  .site-ghost-icon-lg,
  .lightbox-slide-icon {
    font-size: 4.8rem;
  }
  .carousel-slide-icon {
    font-size: 3.6rem;
  }
  .contact-detail-label,
  .policy-contact-label,
  .consent-chip-label {
    letter-spacing: 0.18em;
  }
}

/* ─── DESKTOP READABILITY TUNING ─── */
@media (min-width: 992px) {
  .nav-logo-mark { width: 64px; }
  .nav-links a { font-size: 0.78rem; }
  .lang-btn { font-size: 0.72rem; }
  .lang-dropdown button, .lang-dropdown a {
    text-decoration:none; font-size: 0.74rem; }

  .hero-star { font-size: 0.72rem; }
  .hero-sub { font-size: 0.82rem; }
  .hero-scroll { font-size: 0.66rem; }

  .section-label { font-size: 0.66rem; }
  .about-text p { font-size: 1.12rem; }

  .room-card-label { font-size: 0.64rem; }
  .room-card-title { font-size: 1.62rem; }
  .room-card-teaser { font-size: 0.8rem; }
  .room-card-cta { font-size: 0.66rem; }

  .modal-header-left .room-label { font-size: 0.66rem; }
  .room-price .from { font-size: 0.66rem; }
  .room-price .per { font-size: 0.7rem; }
  .modal-desc { font-size: 1.04rem; }
  .amenities-title { font-size: 0.7rem; }
  .amenity { font-size: 0.84rem; }
  .spec-label { font-size: 0.66rem; }

  .exp-item p { font-size: 0.9rem; }
  .dining-text p { font-size: 1rem; }
  .cta-banner p { font-size: 0.92rem; }

  .footer-brand p { font-size: 0.84rem; }
  .footer-col h4 { font-size: 0.64rem; }
  .footer-col a,
  .footer-col p { font-size: 0.86rem; }
  .footer-bottom p { font-size: 0.76rem; }

  .policy-kicker { font-size: 0.72rem; }
  .policy-hero p { font-size: 1rem; }
  .policy-breadcrumb a { font-size: 0.76rem; }
  .policy-card p,
  .policy-card li { font-size: 1rem; }
  .policy-footer-box p { font-size: 0.96rem; }

  .consent-title { font-size: 0.86rem; }
  .consent-text { font-size: 0.94rem; }
  .consent-modal-header p { font-size: 1rem; }
  .consent-group h4 { font-size: 0.82rem; }
  .consent-group p { font-size: 0.94rem; }
}


.footer-link-icon-tripadvisor {
  font-size: 1rem;
}
.footer-link-icon-tripadvisor::before {
  display: inline-block;
}


/* ─── CAREERS PAGE ─── */
.careers-page {
  min-height: 100vh;
  background: var(--warm-white);
  color: var(--dark);
}
.careers-page .policy-hero {
  background: linear-gradient(135deg, #10191d 0%, #1f2b24 45%, #2f2113 100%);
}
.careers-page .policy-hero p {
  max-width: 760px;
}
.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.careers-grid + .careers-grid {
  margin-top: 24px;
}
.careers-card {
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(2,6,23,.06);
  padding: 34px;
}
.careers-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 16px;
  color: var(--dark);
}
.careers-card p,
.careers-card li {
  font-size: 0.96rem;
  line-height: 1.95;
  color: #444;
  font-weight: 300;
}
.careers-card ul {
  padding-left: 20px;
  margin-top: 12px;
}
.careers-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.careers-steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid #efe8dc;
}
.careers-steps li:first-child {
  border-top: 0;
  padding-top: 0;
}
.careers-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,151,90,0.12);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}
.careers-step-body strong {
  display: block;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 6px;
}
.careers-dept-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.careers-dept-item {
  border: 1px solid #ece4d8;
  background: linear-gradient(180deg, #fff, #fbf8f3);
  padding: 16px 18px;
  min-height: 100%;
}
.careers-dept-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
}
.careers-dept-item p {
  font-size: 0.88rem;
  line-height: 1.85;
}
.careers-cta-box {
  background: var(--charcoal);
  color: rgba(255,255,255,0.78);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.careers-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(184,151,90,0.14), transparent 42%);
}
.careers-cta-box > * {
  position: relative;
}
.careers-cta-box h2 {
  color: #fff;
}
.careers-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.careers-cta-actions .btn-primary,
.careers-cta-actions .btn-outline {
  min-width: 220px;
  justify-content: center;
}
.careers-cta-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.careers-cta-actions .btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.careers-note {
  margin-top: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
}
.careers-footer-home {
  color: #fff;
}
@media (max-width: 900px) {
  .careers-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .careers-card,
  .careers-cta-box {
    padding: 24px;
    border-radius: 22px;
  }
  .careers-dept-grid {
    grid-template-columns: 1fr;
  }
  .careers-steps li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .careers-step-num {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }
  .careers-cta-actions .btn-primary,
  .careers-cta-actions .btn-outline {
    width: 100%;
    min-width: 0;
  }
}


/* ─── VENUE PAGES ─── */
.venue-page {
  background: var(--dark);
  color: #fff;
}
.venue-page main { overflow: hidden; }
.venue-page section { padding: 90px 40px; }
.venue-hero {
  min-height: 100vh;
  padding-top: 130px;
  background: radial-gradient(circle at top right, rgba(184,151,90,0.18), transparent 34%), linear-gradient(150deg, #18120b 0%, #0f0f10 45%, #171717 100%);
}
.venue-hero-inner,.venue-overview-inner,.venue-gallery-inner,.venue-contact-inner { max-width: 1200px; margin: 0 auto; }
.venue-hero-inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 46px; align-items: center; }
.venue-back-link { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; color: rgba(255,255,255,0.72); text-decoration: none; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.68rem; }
.venue-back-link:hover { color: var(--gold-light); }
.venue-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 8vw, 5.4rem); font-weight: 300; line-height: 0.98; margin-bottom: 22px; }
.venue-lead { max-width: 680px; color: rgba(255,255,255,0.76); line-height: 1.9; font-size: 0.96rem; font-weight: 300; }
.venue-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.venue-hero-media,.venue-media-card { position: relative; border: 1px solid rgba(255,255,255,0.08); background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)); overflow: hidden; }
.venue-hero-media { min-height: 520px; }
.venue-media-placeholder { min-height: inherit; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 36px; gap: 16px; color: rgba(255,255,255,0.72); }
.venue-media-placeholder i { font-size: 3rem; color: rgba(184,151,90,0.8); }
.venue-media-placeholder strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: #fff; }
.venue-media-placeholder span { max-width: 320px; line-height: 1.8; font-size: 0.88rem; }
.venue-overview { background: #111; }
.venue-overview-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr); gap: 34px; margin-top: 46px; }
.venue-story-card,.venue-facts-card { border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); padding: 34px; }
.venue-story-card h3,.venue-facts-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 16px; }
.venue-story-card p,.venue-facts-card p { color: rgba(255,255,255,0.68); line-height: 1.9; font-size: 0.92rem; font-weight: 300; }
.venue-facts { display: grid; gap: 18px; margin-top: 20px; }
.venue-fact { padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.venue-fact:first-child { border-top: 0; padding-top: 0; }
.venue-fact-label { display: block; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.venue-fact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; }
.venue-gallery { background: var(--sand); color: var(--dark); }
.venue-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; margin-top: 44px; }
.venue-media-card { min-height: 260px; border-color: rgba(14,14,14,0.08); background: rgba(255,255,255,0.58); }
.venue-media-card .venue-media-placeholder { min-height: 260px; color: #545454; }
.venue-media-card .venue-media-placeholder strong { color: var(--dark); font-size: 1.7rem; }
.venue-media-card .venue-media-placeholder i { color: rgba(184,151,90,0.92); }

.venue-gallery-grid.venue-gallery-mosaic {
  grid-template-columns: repeat(12, minmax(0,1fr));
  grid-auto-rows: 96px;
  grid-auto-flow: row dense;
  align-items: stretch;
}
.venue-gallery-grid.venue-gallery-mosaic > .venue-media-card {
  min-height: 100%;
  height: 100%;
}
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(1) { grid-column: 1 / span 7; grid-row: 1 / span 4; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(2) { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(3) { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(4) { grid-column: 1 / span 6; grid-row: 5 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(5) { grid-column: 7 / span 3; grid-row: 5 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(6) { grid-column: 10 / span 3; grid-row: 5 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(7) { grid-column: 1 / span 3; grid-row: 7 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(8) { grid-column: 4 / span 6; grid-row: 7 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(9) { grid-column: 10 / span 3; grid-row: 7 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(10) { grid-column: 1 / span 6; grid-row: 9 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(11) { grid-column: 7 / span 6; grid-row: 9 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(1) { grid-column: 1 / span 7; grid-row: 1 / span 4; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(2) { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(3) { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(4) { grid-column: 1 / span 12; grid-row: 5 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(1) { grid-column: 1 / span 7; grid-row: 1 / span 4; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(2) { grid-column: 8 / span 5; grid-row: 1 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(3) { grid-column: 8 / span 5; grid-row: 3 / span 2; }
.venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(4) { grid-column: 1 / span 12; grid-row: 5 / span 2; }
@media (max-width: 1100px) {
  .venue-gallery-grid.venue-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-auto-rows: 180px;
  }
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(1),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(1),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: span 2;
  }
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(n+2),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(n+2),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(n+2) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(4),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(4),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(4),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(8),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(10),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(11) {
    grid-column: 1 / span 2;
  }
}
@media (max-width: 640px) {
  .venue-gallery-grid.venue-gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .venue-gallery-grid.venue-gallery-mosaic > .venue-media-card,
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(1),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(1),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(1),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(4),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(8),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(10),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--restaurant > .venue-media-card:nth-child(11),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--pool > .venue-media-card:nth-child(4),
  .venue-gallery-grid.venue-gallery-mosaic.venue-gallery-mosaic--spa > .venue-media-card:nth-child(4) {
    grid-column: 1;
    grid-row: span 1;
  }
}
.venue-menu-section { background: #121212; }
.venue-menu-section .dining-inner { max-width: 1200px; margin: 0 auto; }
.venue-menu-section .menu-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.venue-menu-section .menu-card h3,.venue-menu-section .menu-item-name { color: #fff; }
.venue-menu-section .menu-card > p { color: rgba(255,255,255,0.68); }
.venue-menu-section .menu-item { border-bottom-color: rgba(255,255,255,0.08); }
.venue-contact { background: linear-gradient(180deg, #161616 0%, #101010 100%); }
.venue-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; margin-top: 42px; }
.venue-contact-card { border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); padding: 28px; }
.venue-contact-card .menu-kicker { margin-bottom: 10px; }
.venue-contact-card p,.venue-contact-card a { color: rgba(255,255,255,0.72); line-height: 1.85; text-decoration: none; }
.venue-contact-card a:hover { color: var(--gold-light); }
.venue-mini-footer { padding-top: 26px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.venue-mini-footer a { color: var(--gold); text-decoration: none; }
.venue-page.rtl { direction: rtl; }
.venue-page.rtl .venue-cta-row,.venue-page.rtl .venue-mini-footer { justify-content: flex-start; }
@media (max-width: 1024px) {
  .venue-hero-inner,.venue-overview-grid,.venue-contact-grid,.venue-gallery-grid { grid-template-columns: 1fr 1fr; }
  .venue-hero-media { min-height: 420px; }
}
@media (max-width: 768px) {
  .venue-page section { padding: 76px 20px; }
  .venue-hero { padding-top: 116px; }
  .venue-hero-inner,.venue-overview-grid,.venue-contact-grid,.venue-gallery-grid { grid-template-columns: 1fr; }
  .venue-hero-media { min-height: 320px; }
}


/* ─── POOL BAR MENUS ─── */
.pool-menu-section {
  background:
    radial-gradient(circle at top right, rgba(184,151,90,0.16), transparent 30%),
    linear-gradient(180deg, #131313 0%, #101010 100%);
}
.pool-menu-lead {
  max-width: 860px;
  color: rgba(255,255,255,0.74);
  line-height: 1.95;
  font-size: 0.96rem;
  font-weight: 300;
  margin-top: 22px;
}
.menu-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.menu-anchor,
.menu-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.menu-anchor:hover,
.menu-category-link:hover {
  border-color: rgba(184,151,90,0.5);
  color: var(--gold-light);
  background: rgba(184,151,90,0.08);
}
.pool-menu-stack {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}
.menu-master-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 38px;
  overflow: hidden;
}
.menu-master-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(184,151,90,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%);
  pointer-events: none;
}
.menu-card-header,
.menu-card-intro,
.menu-category-nav,
.menu-sections-grid {
  position: relative;
  z-index: 1;
}
.menu-card-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  grid-template-areas:
    'kicker badge'
    'title badge';
  gap: 14px 18px;
  align-items: end;
}
.menu-card-header .menu-kicker {
  grid-area: kicker;
  margin-bottom: 0;
}
.menu-card-header h3 {
  grid-area: title;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
}
.menu-service-badge {
  grid-area: badge;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid rgba(184,151,90,0.35);
  background: rgba(184,151,90,0.08);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-card-intro {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  font-size: 0.95rem;
  font-weight: 300;
}
.menu-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.menu-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}
.menu-section-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9,9,9,0.36);
  padding: 28px 26px;
  scroll-margin-top: 120px;
}
.menu-section-card h4 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
}
.menu-section-intro {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.64);
  line-height: 1.85;
  font-size: 0.88rem;
  font-weight: 300;
}
.menu-detail-list {
  display: grid;
  gap: 18px;
}
.menu-detail-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.menu-item-top {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: start;
}
.menu-item-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  line-height: 1.16;
  font-weight: 400;
  color: #fff;
}
.menu-item-copy {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  font-size: 0.9rem;
  font-weight: 300;
}
.menu-item-note {
  margin: 10px 0 0;
  color: var(--gold-light);
  line-height: 1.65;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.menu-note-box {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(184,151,90,0.22);
  background: rgba(184,151,90,0.08);
  display: grid;
  gap: 8px;
}
.menu-note-box strong {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.menu-note-box span {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
  font-size: 0.86rem;
  font-weight: 300;
}

.menu-accordion-helper {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255,255,255,0.56);
  line-height: 1.7;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-accordion-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.menu-accordion {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9,9,9,0.38);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.menu-accordion[open] {
  border-color: rgba(184,151,90,0.34);
  background: rgba(11,11,11,0.54);
}
.menu-accordion-trigger {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
}
.menu-accordion-trigger::-webkit-details-marker {
  display: none;
}
.menu-accordion-text {
  display: grid;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.menu-accordion-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.06;
  font-weight: 300;
  color: #fff;
}
.menu-accordion-subtitle {
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  font-size: 0.84rem;
  font-weight: 300;
}
.menu-accordion-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(184,151,90,0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}
.menu-accordion[open] .menu-accordion-icon {
  transform: rotate(45deg);
  background: rgba(184,151,90,0.1);
}
.menu-accordion-panel {
  padding: 0 24px 24px;
}
.menu-accordion-panel .menu-detail-list {
  gap: 16px;
}
.menu-accordion-panel .menu-detail-item:first-child {
  padding-top: 4px;
}
.menu-accordion-panel .menu-note-box {
  margin-top: 18px;
}

/* Spa menu alignment */
#spa-menu .menu-accordion-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
#spa-menu .menu-accordion-text {
  min-width: 0;
  flex: 0 1 auto;
}
#spa-menu .menu-accordion-meta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  flex: 0 0 auto;
}
#spa-menu .menu-accordion-trigger .menu-service-badge {
  width: 126px;
  text-align: center;
}
#spa-menu .menu-accordion-trigger .menu-accordion-icon {
  flex: 0 0 auto;
}
@media (max-width: 1200px) {
  .menu-sections-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .menu-master-card {
    padding: 28px 20px;
  }
  .menu-card-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      'kicker'
      'title'
      'badge';
    align-items: start;
  }
  .menu-card-header .menu-kicker,
  .menu-card-header h3,
  .menu-card-header .menu-service-badge {
    justify-self: start;
  }
  .menu-card-header h3 {
    font-size: 2.35rem;
  }
  .menu-anchor-row,
  .menu-category-nav {
    gap: 10px;
  }
  .menu-anchor,
  .menu-category-link {
    width: 100%;
    justify-content: flex-start;
  }
  .menu-section-card {
    padding: 22px 18px;
  }
  .menu-accordion-trigger {
    padding: 18px 18px;
  }
  .menu-accordion-panel {
    padding: 0 18px 18px;
  }
  .menu-accordion-title {
    font-size: 1.52rem;
  }
  .menu-accordion-subtitle {
    font-size: 0.8rem;
  }
  .menu-item-top {
    gap: 10px;
  }
  .menu-item-title {
    font-size: 1.28rem;
  }
  #spa-menu .menu-accordion-trigger {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
  }
  #spa-menu .menu-accordion-text {
    grid-column: 2;
  }
  #spa-menu .menu-accordion-meta {
    grid-column: 2;
    justify-self: start;
    gap: 12px;
    flex-wrap: wrap;
  }
  #spa-menu .menu-accordion-trigger .menu-service-badge {
    width: auto;
  }
}


/* ─── ROOMS MOSAIC + MOBILE CAROUSEL OVERRIDES ─── */
.rooms-header {
  margin-bottom: 36px;
}
.rooms-carousel-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.rooms-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, 1fr);
  gap: 14px;
}
.room-card {
  aspect-ratio: auto;
  min-height: 210px;
  transform-origin: center center;
}
.room-card-img,
.room-card-img-inner {
  height: 100%;
}
.room-card-overlay {
  padding: 26px;
}
.room-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.room-card-teaser {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.3em;
  max-width: 34ch;
}
.room-card[data-room-index="6"] {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  min-height: 434px;
}
.room-card[data-room-index="6"] .room-card-overlay {
  padding: 32px;
}
.room-card[data-room-index="6"] .room-card-title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  min-height: 2.2em;
}
.room-card[data-room-index="6"] .room-card-teaser {
  max-width: 38ch;
}
.room-card[data-room-index="4"] {
  grid-column: 3;
  grid-row: 1;
}
.room-card[data-room-index="5"] {
  grid-column: 4;
  grid-row: 1;
}
.room-card[data-room-index="3"] {
  grid-column: 3;
  grid-row: 2;
}
.room-card[data-room-index="1"] {
  grid-column: 4;
  grid-row: 2;
}
.room-card[data-room-index="0"] {
  grid-column: 1 / span 2;
  grid-row: 3;
}
.room-card[data-room-index="2"] {
  grid-column: 3 / span 2;
  grid-row: 3;
}
.rooms-carousel-btn,
.rooms-carousel-dots {
  display: none;
}
.rooms-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(184,151,90,0.35);
  background: rgba(12,16,18,0.84);
  color: #fff;
  z-index: 4;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.rooms-carousel-btn:hover:not(:disabled) {
  background: rgba(12,16,18,0.96);
}
.rooms-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.rooms-carousel-btn.prev {
  left: -10px;
}
.rooms-carousel-btn.next {
  right: -10px;
}
.rooms-carousel-dots {
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.rooms-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(17,24,39,0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.rooms-carousel-dot.active {
  background: var(--gold);
  transform: scale(1.18);
}
@media (max-width: 1024px) {
  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, 1fr);
  }
  .room-card[data-room-index] {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .room-card[data-room-index="6"] {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .rooms-header {
    margin-bottom: 28px;
  }
  .rooms-carousel-shell {
    max-width: none;
    padding: 0 0 6px;
  }
  .rooms-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: none;
    grid-auto-rows: auto;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px 4px;
  }
  .rooms-grid::-webkit-scrollbar {
    display: none;
  }
  .room-card,
  .room-card[data-room-index],
  .room-card[data-room-index="6"] {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .room-card-title {
    min-height: 0;
  }
  .room-card-teaser {
    min-height: 0;
    max-width: none;
  }
  .rooms-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .rooms-carousel-dots {
    display: flex;
  }
}
