*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      /* --blue: #0E93B0; */
      --teal: #0E93B0;
      --gold: #0E93B0;
      --gold-light: #0E93B0;
      --dark: #1a1a1a;
      --cream: #f9f5ef;
      --text: #3a3a3a;
      --text-light: #7a7a7a;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 112px;
      max-width: 100%;
      overflow-x: hidden;
    }

    svg[aria-hidden="true"] {
      display: inline-block;
      vertical-align: middle;
      overflow: visible;
      flex-shrink: 0;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      background: #fff;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }

    .skip-link {
      position: fixed;
      top: 14px;
      left: 14px;
      z-index: 2000;
      transform: translateY(-150%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: #0a0907;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .skip-link:focus,
    .skip-link:focus-visible {
      transform: translateY(0);
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    main:focus { outline: none; }

    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1500;
      height: 3px;
      pointer-events: none;
      background: transparent;
    }
    .scroll-progress span {
      display: block;
      width: 100%;
      height: 100%;
      transform: scaleX(0);
      transform-origin: left center;
      background: linear-gradient(90deg, var(--gold), #ffffff);
      box-shadow: 0 0 18px rgba(14,147,176,0.38);
      transition: transform 0.12s linear;
    }

    :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    .breadcrumbs {
      position: static;
      inset: auto;
      z-index: auto;
      display: block;
      width: min(1180px, calc(100% - 48px));
      height: auto;
      margin: 34px auto 0;
      padding: 0;
      background: transparent;
      box-shadow: none;
      backdrop-filter: none;
      transform: none;
      transition: none;
    }
    .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 9px;
      list-style: none;
    }
    .breadcrumbs li {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
      color: var(--text-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      line-height: 1.5;
      text-transform: uppercase;
    }
    .breadcrumbs li + li::before {
      content: '/';
      color: rgba(26,26,26,0.26);
    }
    .breadcrumbs a {
      color: inherit;
      text-decoration: none;
      transition: color 0.25s ease;
    }
    .breadcrumbs a:hover {
      color: var(--gold);
    }
    .breadcrumbs [aria-current="page"] {
      color: var(--dark);
    }
    .content-page > .breadcrumbs {
      width: min(1180px, calc(100% - 48px));
      margin: 34px auto;
    }
    .policy-page > .breadcrumbs {
      width: min(920px, 100%);
      margin: 0 auto 24px;
    }
    .room-container > .breadcrumbs {
      width: 100%;
      margin: 0 0 34px;
    }
    .contact-shell > .breadcrumbs {
      width: min(1180px, calc(100% - 48px));
      margin: 34px auto;
    }

    @supports (content-visibility: auto) {
      .inspiration,
      .accommodations,
      .features,
      .amenities,
      .rooms-intro,
      .rooms-list,
      .room-detail-grid,
      .room-proof-band,
      .similar-rooms,
      .gallery-filters,
      .external-reviews-section,
      .faq-section,
      .contact-map-section,
      .olins-intro,
      .olins-highlights,
      .tablego-section,
      .room-video-section,
      .page-card-grid,
      .notfound-section {
        content-visibility: auto;
        contain-intrinsic-size: auto 720px;
      }
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ── NAV ── */

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      padding: 0 40px;
      height: 100px;
      transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, opacity 0.28s ease, transform 0.28s ease;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgb(46 25 35 / 0%));
    }
    nav.scrolled {
      background: rgba(10, 9, 7, 0.97);
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
      backdrop-filter: blur(12px);
      height: 100px;
    }
    /* left links — reused as the centered menu group */
    /* logo — left corner */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
      margin-right: 0;
    }
    /* centered menu — absolutely centered in the nav */
    .nav-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    /* right section */
    .nav-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 14px;
      margin-left: auto;
    }
    .nav-lang-toggle {
      border: 1px solid rgba(255,255,255,0.28);
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.82);
      min-width: 72px;
      min-height: 40px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      font-size: 12px;
      letter-spacing: 1.5px;
      font-weight: 700;
      cursor: pointer;
      transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
      font-family: 'Montserrat', sans-serif;
      white-space: nowrap;
    }
    .nav-lang-toggle:hover {
      border-color: var(--gold);
      background: rgba(14,147,176,0.18);
      color: #fff;
    }
    .nav-lang-toggle [data-lang-option="en"],
    .nav-lang-toggle [data-lang-option="de"] {
      opacity: 0.52;
      transition: opacity 0.2s ease, color 0.2s ease;
    }
    .nav-lang-toggle[data-lang-current="en"] [data-lang-option="en"],
    .nav-lang-toggle[data-lang-current="de"] [data-lang-option="de"] {
      color: #fff;
      opacity: 1;
    }
    .lang-divider { opacity: 0.42; }

    .nav-btn {
      padding: 11px 22px;
      background: var(--gold);
      border: 1px solid var(--gold);
      color: var(--cream);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      font-family: 'Montserrat', sans-serif;
      white-space: nowrap;
    }
    .nav-btn:hover { 
      background: var(--cream); color: var(--dark); 

    }

    cb-book-now-button,
    .cloudbeds-book-now {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
    }

    button.nav-btn,
    .cloudbeds-book-now-trigger {
      cursor: pointer;
      appearance: none;
      border-radius: 0;
      box-shadow: none;
    }

    cb-book-now-button .nav-btn,
    .cloudbeds-book-now-trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: normal;
    }

    cb-book-now-button .cloudbeds-book-now-trigger.nav-btn,
    .cloudbeds-book-now-trigger.nav-btn {
      background: var(--gold) !important;
      border: 1px solid var(--gold) !important;
      color: var(--cream) !important;
      padding: 11px 22px !important;
      font-size: 13px !important;
      letter-spacing: 2px !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      font-weight: 600 !important;
      font-family: 'Montserrat', sans-serif !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    cb-book-now-button .cloudbeds-book-now-trigger.nav-btn:hover,
    .cloudbeds-book-now-trigger.nav-btn:hover {
      background: var(--cream) !important;
      color: var(--dark) !important;
      border-color: var(--gold) !important;
    }

    /* nav items */
    .nav-item {
      position: relative;
    }
    .nav-item > a,
    .nav-item > button {
      display: flex;
      align-items: center;
      gap: 5px;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 24px 12px;
      position: relative;
      transition: color 0.3s;
      white-space: nowrap;
      border: 0;
      background: transparent;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
    }
    nav.scrolled .nav-item > a,
    nav.scrolled .nav-item > button { padding: 18px 12px; }
    .nav-item > a::after,
    .nav-item > button::after {
      content: '';
      position: absolute;
      bottom: 0; left: 12px; right: 12px;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }
    .nav-item:hover > a,
    .nav-item:hover > button { color: #fff; }
    .nav-item:hover > a::after,
    .nav-item:hover > button::after { transform: scaleX(1); }
    /* chevron arrow */
    .nav-chevron {
      width: 10px; height: 10px;
      stroke: currentColor;
      fill: none;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .nav-item:hover .nav-chevron { transform: rotate(180deg); }

    /* ── DROPDOWN ── */
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0px);
      left: 0;
      min-width: 250px;
      background: rgba(10, 9, 7, 0.98);
      backdrop-filter: blur(14px);
      list-style: none;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
      border-top: 2px solid var(--gold);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }
    .nav-item:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-dropdown li a {
      display: block;
      padding: 11px 26px;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.25s, padding-left 0.25s, background 0.25s;
    }
    .nav-dropdown li a:hover {
      color: var(--gold);
      padding-left: 34px;
      background: rgba(201,168,76,0.06);
    }
    .nav-dropdown li + li {
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ── HAMBURGER BUTTON ── */
    .hamburger {
      display: none;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      padding: 0;
      z-index: 1100;
      position: relative;
      outline: none;
      flex-shrink: 0;
    }
    .hamburger:focus {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }
    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      transition: all 0.3s ease;
      display: block;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* ── MOBILE MENU ── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #000;
      z-index: 999;
      padding-top: 100px;
      overflow-y: auto;
      animation: slideIn 0.3s ease-out;
    }
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .mobile-menu.active {
      display: block;
    }
    .mobile-menu > ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: block;
      width: 100%;
    }
    .mobile-menu .nav-item {
      position: relative;
      width: 100%;
      display: block;
    }
    .mobile-menu .nav-item > a,
    .mobile-menu .nav-item > button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      letter-spacing: 1px;
      text-transform: capitalize;
      font-weight: 400;
      padding: 20px 30px;
      border-bottom: 1px solid rgba(255,255,255,0.15);
      transition: color 0.3s ease, background 0.3s ease;
      width: 100%;
      box-sizing: border-box;
      border-left: 0;
      border-right: 0;
      border-top: 0;
      background: transparent;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
    }
    .mobile-menu .nav-item > a:hover,
    .mobile-menu .nav-item > button:hover {
      background: rgba(255,255,255,0.05);
    }
    .mobile-menu .nav-chevron {
      width: 12px;
      height: 12px;
      stroke: currentColor;
      fill: none;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 15px;
      opacity: 0.6;
    }
    .mobile-menu .nav-item.open > a .nav-chevron {
      transform: rotate(90deg);
      opacity: 1;
    }
    .mobile-menu .nav-dropdown {
      position: static;
      opacity: 0;
      visibility: hidden;
      max-height: 0;
      overflow: hidden;
      transform: none;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      background: rgba(0,0,0,0.3);
      border: none;
      box-shadow: none;
      padding: 0;
      list-style: none;
      margin: 0;
    }
    .mobile-menu .nav-item.open .nav-dropdown {
      opacity: 1;
      visibility: visible;
      max-height: 500px;
      padding: 0;
    }
    .mobile-menu .nav-dropdown li a {
      display: block;
      padding: 15px 60px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 0.5px;
      text-transform: capitalize;
      font-weight: 400;
      transition: color 0.25s, padding-left 0.25s, background 0.25s;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu .nav-dropdown li a:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.08);
      padding-left: 68px;
    }
    .mobile-menu .nav-dropdown li:last-child a {
      border-bottom: none;
    }
    .mobile-menu-btn {
      border-bottom: none;
      padding: 0;
    }
    .mobile-menu-btn .nav-btn {
      background: var(--gold);
      color: var(--dark);
      border: none;
      display: block;
      text-align: center;
      padding: 16px 30px;
      margin: 30px 30px 20px 30px;
      font-size: 14px;
      font-weight: 600;
      text-transform: capitalize;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      width: calc(100% - 60px);
      border-radius: 2px;
    }
    .mobile-menu-btn cb-book-now-button,
    .mobile-menu-btn .cloudbeds-book-now {
      display: block;
      width: 100%;
    }
    .mobile-menu-btn cb-book-now-button .nav-btn,
    .mobile-menu-btn .cloudbeds-book-now-trigger {
      width: calc(100% - 60px);
    }
    .mobile-menu-btn cb-book-now-button .cloudbeds-book-now-trigger.nav-btn,
    .mobile-menu-btn .cloudbeds-book-now-trigger.nav-btn {
      background: var(--gold) !important;
      color: var(--dark) !important;
      border: none !important;
      padding: 16px 30px !important;
      margin: 30px 30px 20px 30px !important;
      font-size: 14px !important;
      font-weight: 600 !important;
      text-transform: capitalize !important;
      letter-spacing: 1px !important;
      width: calc(100% - 60px) !important;
      border-radius: 2px !important;
    }
    .mobile-menu-btn cb-book-now-button .cloudbeds-book-now-trigger.nav-btn:hover,
    .mobile-menu-btn .cloudbeds-book-now-trigger.nav-btn:hover {
      background: var(--cream) !important;
      color: var(--dark) !important;
    }
    .mobile-menu-btn .nav-btn:hover {
      background: var(--cream);
      color: var(--dark);
    }

/* ── NAV ── */


/* ── HERO ── */

    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
      touch-action: pan-y;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero-slides {
      position: absolute;
      inset: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1.2s ease, transform 6s ease;
    }
    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }
    /* hero-slide background images live inline on the elements in index.php */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 48%, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.3) 34%, rgba(0,0,0,0.12) 58%),
        linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.72) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 10;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

        .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 300;
      letter-spacing: 4px;
      line-height: 1.05;
      text-shadow: 0 3px 28px rgba(0,0,0,0.78), 0 1px 2px rgba(0,0,0,0.72);
      margin-bottom: 16px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.6s forwards;
    }


    .hero-tag {
      font-size: 17px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #E0DAD1;
      text-shadow: 0 2px 18px rgba(0,0,0,0.74);
      margin-bottom: 30px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: 4px;
      text-shadow: 0 3px 28px rgba(0,0,0,0.78), 0 1px 2px rgba(0,0,0,0.72);
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.6s forwards;
    }

    .hero-content .hero-occupancy {
      font-size: 17.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 2px 18px rgba(0,0,0,0.78);
      font-weight: 300;
      margin-top: 30px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.9s forwards;
    }


    .hero-sub {
      font-size: 17.5px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 2px 18px rgba(0,0,0,0.78);
      margin-top: 30px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s 0.9s forwards;
    }
    .hero-divider {
      width: 50px; height: 1px;
      background: var(--gold);
      margin: 28px auto;
      opacity: 0;
      animation: fadeUp 1s 1.1s forwards;
    }
    .hero-cta {
      display: flex; gap: 16px;
      opacity: 0;
      animation: fadeUp 1s 1.3s forwards;
      justify-content: center;
      max-width: calc(100vw - 44px);
      margin-left: auto;
      margin-right: auto;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 36px;
      background: var(--gold);
      border: 0;
      color: var(--cream);
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .hero-cta cb-book-now-button {
      max-width: 100%;
    }
    .hero-cta cb-book-now-button .btn-primary.hero-book-direct,
    .hero-cta .btn-primary.hero-book-direct {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      padding: 14px 36px !important;
      background: var(--gold) !important;
      border: 0 !important;
      color: var(--cream) !important;
      font-size: 13px !important;
      letter-spacing: 3px !important;
      text-transform: uppercase !important;
      font-weight: 700 !important;
      text-decoration: none !important;
      font-family: 'Montserrat', sans-serif !important;
      line-height: 1.35 !important;
      white-space: normal !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      min-height: 47px !important;
    }
    .hero-cta cb-book-now-button .btn-primary.hero-book-direct::before,
    .hero-cta .btn-primary.hero-book-direct::before {
      display: none !important;
      content: none !important;
    }
    .hero-cta cb-book-now-button .btn-primary.hero-book-direct:hover,
    .hero-cta .btn-primary.hero-book-direct:hover {
      background: #0b819c !important;
      color: var(--cream) !important;
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(0,0,0,0.22) !important;
    }
    .hero-cta cb-book-now-button .btn-primary.hero-book-direct:hover span,
    .hero-cta .btn-primary.hero-book-direct:hover span {
      color: var(--cream) !important;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #fff;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover span { color: var(--dark); }
    .hero-book-direct {
      max-width: 520px;
      text-align: center;
      line-height: 1.35;
      white-space: normal;
    }
    .btn-outline {
      padding: 14px 36px;
      border: 1px solid rgba(255,255,255,0.7);
      color: #fff;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 600;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s ease;
    }
    .btn-outline:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--cream);
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px; left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.7);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }
    .hero-scroll-line {
      width: 1px; height: 40px;
      background: rgba(255,255,255,0.5);
      animation: scrollLine 2s 2s infinite;
    }
    .hero-dots {
      position: absolute;
      bottom: 36px; right: 60px;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-dot {
      width: 4px; height: 4px;
      background: rgba(255,255,255,0.4);
      border: 0;
      padding: 0;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s;
    }
    .hero-dot.active { background: var(--gold); transform: scale(1.5); }

    /* ── HERO ── */


    /* ── ABOUT ── */
    .about {
      padding: 110px 0 80px;
      background: #fff;
    }
    .section-label {
      font-size: 17px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 16px;
    }
    .about-top {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 70px;
      padding: 0 40px;
    }
    .about-emblem {
      width: 58px;
      height: 58px;
      margin: 0 auto 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(14,147,176,0.45);
      border-radius: 50%;
      color: var(--gold);
      background: rgba(255,255,255,0.72);
      box-shadow: 0 10px 30px rgba(14,147,176,0.09);
    }
    .about-emblem svg {
      width: 30px;
      height: 30px;
      stroke-width: 1.6;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(45px, 4vw, 60px);
      font-weight: 400;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 24px;
    }
    .section-body {
      font-size: 17.5px;
      line-height: 1.9;
      color: var(--text-light);
      font-weight: 300;
    }
    /* ── GALLERY SLIDER ── */
    .about-gallery-slider {
      position: relative;
      margin-bottom: 30px;
      overflow: hidden;
    }
    .about-gallery-track-wrap {
      overflow: hidden;
      touch-action: pan-y;
    }
    .about-gallery {
      display: flex;
      gap: 10px;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .about-gallery-item {
      flex: 0 0 calc(22% - 3.2px);
      overflow: hidden;
      aspect-ratio: 3/4;
      position: relative;
    }
    .about-gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .about-gallery-item:hover img { transform: scale(1.08); }
    .gallery-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 20;
      width: 48px; height: 48px;
      background: rgba(255,255,255,0.92);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, color 0.3s, transform 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    }
    .gallery-arrow:hover {
      background: var(--gold);
      transform: translateY(-50%) scale(1.1);
    }
    .gallery-arrow:hover svg { color: var(--dark); }
    .gallery-arrow svg {
      width: 20px; height: 20px;
      color: var(--dark);
      transition: color 0.3s;
    }
    .gallery-arrow.prev { left: 12px; }
    .gallery-arrow.next { right: 12px; }
    .gallery-arrow:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }
    .gallery-arrow:disabled:hover {
      background: rgba(255,255,255,0.92);
      transform: translateY(-50%);
    }
    .gallery-arrow:disabled:hover svg { color: var(--dark); }
    .about-caption {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 33px;
      color: var(--text-light);
      padding: 20px;
      letter-spacing: 1px;
    }

    /* ── HERO ── */



    /* ── INSPIRATION BANNER ── */
    .inspiration {
      height: 70vh;
      min-height: 480px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .inspiration-bg {
      position: absolute;
      inset: 0;
      background-image: none;
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
    }
    .inspiration-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,8,5,0.58), rgba(10,8,5,0.72)),
        radial-gradient(circle at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.42));
    }
    .inspiration-content {
      position: relative;
      z-index: 5;
      text-align: center;
      color: #fff;
      padding: 0 40px;
      max-width: 816px;
      text-shadow: 0 3px 24px rgba(0,0,0,0.72);
    }
    .inspiration-content .section-label { color: var(--gold-light); margin-bottom: 20px; }
    .inspiration-content .section-title {
      color: #fff;
      font-size: clamp(45px, 4vw, 62px);
      font-weight: 300;
    }
    .inspiration-content p {
      margin-top: 20px;
      font-size: 17px;
      color: rgba(255,255,255,0.75);
      line-height: 1.8;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .home-video {
      position: relative;
      overflow: hidden;
      margin-top: 0;
      padding: 108px 6vw 116px;
      background:
        var(--cream);
      color: var(--dark);
    }

    .home-video::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: min(1240px, calc(100% - 48px));
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(14,147,176,0.34), transparent);
      pointer-events: none;
    }

    .home-video::after {
      content: '';
      position: absolute;
      inset: 0 0 auto 0;
      height: 240px;
      background: linear-gradient(180deg, rgba(14,147,176,0.07), transparent);
      pointer-events: none;
    }

    .home-video-inner {
      position: relative;
      z-index: 1;
      width: min(1280px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(280px, 0.78fr) minmax(560px, 1.22fr);
      gap: clamp(38px, 5vw, 78px);
      align-items: center;
    }

    .home-video-copy {
      position: relative;
      padding: 22px 0 22px 28px;
    }

    .home-video-copy::before {
      content: '';
      position: absolute;
      top: 20px;
      bottom: 20px;
      left: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--gold), rgba(14,147,176,0.1));
    }

    .home-video-copy .section-label {
      color: var(--gold);
      margin-bottom: 18px;
    }

    .home-video-copy .section-title {
      color: var(--dark);
      font-size: clamp(42px, 5vw, 68px);
      line-height: 1.04;
      margin: 0 0 24px;
      max-width: 560px;
    }

    .home-video-copy p {
      max-width: 520px;
      margin: 0 0 32px;
      color: var(--text-light);
      font-size: 17px;
      line-height: 1.9;
      font-weight: 300;
    }

    .home-video-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 50px;
      padding: 14px 24px;
      border: 1px solid var(--gold);
      background: var(--gold);
      color: #fff;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.6px;
      text-transform: uppercase;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }

    .home-video-link svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .home-video-link:hover {
      transform: translateY(-2px);
      background: var(--dark);
      border-color: var(--dark);
      color: #fff;
      box-shadow: 0 18px 42px rgba(14,147,176,0.18);
    }

    .home-video-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      min-height: 340px;
      overflow: hidden;
      background: #000;
      border: 8px solid #fff;
      border-radius: 8px;
      box-shadow: 0 32px 72px rgba(26,26,26,0.16);
    }

    .home-video-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(26,26,26,0.08);
    }

    .home-video-frame iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }


     /* ── INSPIRATION BANNER ── */



     /* ── ACCOMMODATIONS ── */
    .accommodations {
      padding: 110px 60px;
      background: var(--cream);
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 60px;
    }
    .section-header-left .section-label { margin-bottom: 10px; }
    .section-header-left .section-title { margin: 0; }
    .btn-gold {
      padding: 12px 28px;
      background: var(--gold);
      color: var(--cream);
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 700;
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .btn-gold:hover { background: var(--dark); color: var(--cream); }
    /* ── ROOMS SLIDER ── */
    .rooms-slider {
      position: relative;
    }
    .rooms-track-wrap {
      overflow: hidden;
      touch-action: pan-y;
    }
    .rooms-grid {
      display: flex;
      gap: 28px;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .room-card {
      flex: 0 0 calc(33.333% - 19px);
      background: #fff;
      overflow: hidden;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: pointer;
    }
    .room-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    }
    .room-card:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 5px;
    }
    .room-img {
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }
    .room-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .room-card:hover .room-img img { transform: scale(1.07); }
    .room-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .room-card:hover .room-img-overlay { opacity: 1; }
    .room-info {
      padding: 24px 26px 28px;
    }
    .room-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 35px;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 25px;
    }
    .room-meta {
      display: flex;
      gap: 40px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }
    .room-meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 15px;
      color: var(--text-light);
    }
    .room-meta-item svg { width: 25px; height: 25px; color: var(--gold); }
    .room-info p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .room-link {
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }
    .room-link:hover { gap: 14px; }
    .room-link svg { width: 14px; height: 14px; }
    .rooms-arrow {
      position: absolute;
      top: 42%;
      transform: translateY(-50%);
      z-index: 20;
      width: 52px; height: 52px;
      background: #fff;
      border: 1.5px solid #e8e2d8;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,0.10);
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .rooms-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
      transform: translateY(-50%) scale(1.08);
    }
    .rooms-arrow:hover svg { color: #fff; }
    .rooms-arrow svg {
      width: 22px; height: 22px;
      color: var(--dark);
      transition: color 0.3s;
    }
    .rooms-arrow.prev { left: -26px; }
    .rooms-arrow.next { right: -26px; }
    .rooms-arrow:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
    .rooms-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .rooms-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #ddd;
      cursor: pointer;
      transition: all 0.3s;
    }
    .rooms-dot.active { background: var(--gold); transform: scale(1.4); }

     /* ── ACCOMMODATIONS ── */



    /* ── FEATURES ── */

    .features {
      min-height: 90vh;
      position: relative;
      overflow: hidden;
    }
    .features-bg {
      position: absolute;
      inset: 0;
      background-image: none;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .features-overlay {
      position: absolute;
      inset: 0;
      background: rgba(8,6,4,0.75);
    }
    .features-inner {
      position: relative;
      z-index: 5;
      padding: 110px 60px;
    }
    .features-header {
      text-align: center;
      color: #fff;
      margin-bottom: 70px;
    }
    .features-header .section-label { color: var(--gold-light); }
    .features-header .section-title { color: #fff; }
    .features-header p {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      max-width: 710px;
      margin: 16px auto 0;
      line-height: 1.8;
    }
    .features-slider {
      position: relative;
      max-width: 1450px;
      margin: 0 auto;
    }
    .features-track-wrap {
      overflow: hidden;
      touch-action: pan-y;
    }
    .features-grid {
      display: flex;
      gap: 20px;
      transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .feature-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      flex: 0 0 calc(33.333% - 14px);
    }
    .features-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border: 1px solid rgba(255,255,255,0.3);
      background: rgba(0,0,0,0.3);
      color: #fff;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      border-radius: 50%;
    }
    .features-arrow:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--dark);
    }
    .features-arrow svg {
      width: 20px;
      height: 20px;
    }
    .features-arrow.prev { left: -26px; }
    .features-arrow.next { right: -26px; }
    .features-arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      pointer-events: none;
    }
    .features-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }
    .features-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .features-dot.active {
      background: var(--gold);
      transform: scale(1.4);
    }
    .feature-card-img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .feature-card-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .feature-card:hover .feature-card-img img { transform: scale(1.1); }
    .feature-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.36) 58%, rgba(0,0,0,0.08) 100%);
      transition: background 0.4s;
    }
    .feature-card:hover .feature-card-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.46) 58%, rgba(0,0,0,0.16) 100%);
    }
    .feature-card-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 28px 26px;
      color: #fff;
      text-shadow: 0 2px 18px rgba(0,0,0,0.78);
      transform: translateY(0);
      transition: transform 0.4s ease;
    }
    .feature-card:hover .feature-card-info { transform: translateY(0); }
    .feature-card-tag {
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .feature-card-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 35px;
      font-weight: 400;
      margin-bottom: 10px;
    }
    .feature-card-info p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      opacity: 1;
      transition: opacity 0.4s 0.1s;
    }
    .feature-card:hover .feature-card-info p { opacity: 1; }
    .feature-link {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      width: min(180px, 100%);
      min-height: 62px;
      margin-top: 20px;
      padding: 12px 14px 12px 0;
      border-top: 1px solid rgba(255,255,255,0.32);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      text-decoration: none;
      font-weight: 600;
      opacity: 1;
      transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }
    .feature-link-copy {
      max-width: 64px;
      line-height: 1.15;
      white-space: normal;
    }
    .feature-link svg {
      width: 48px;
      height: 48px;
      stroke-width: 1.4;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .feature-card:hover .feature-link {
      border-color: var(--gold-light);
      color: #fff;
      transform: translateY(-2px);
    }
    .feature-card:hover .feature-link svg {
      color: var(--gold-light);
      transform: translateX(8px);
    }

    /* ── FEATURES ── */


    /* ── TESTIMONIAL ── */
    /* ── TESTIMONIAL ── */



    /* ── AMENITIES ── */
    .amenities {
      padding: 110px 60px;
      background: #fff;
    }
    .amenities-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }
    .amenities-left .section-label { margin-bottom: 10px; }
    .amenities-left .section-title { margin-bottom: 16px; }
    .amenities-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 25px;
      color: var(--text-light);
      margin-bottom: 40px;
      line-height: 1.5;
    }
    .amenities-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .amenity-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .amenity-icon {
      width: 36px; height: 36px;
      flex-shrink: 0;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .amenity-icon svg { width: 25px; height: 25px; color: var(--gold); }
    .amenity-text h3,
    .amenity-text h4 {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .amenity-text p {
      font-size: 13.5px;
      color: var(--text-light);
      line-height: 1.6;
    }
    .amenities-right {
      position: relative;
    }
    .amenities-img-main {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }
    .amenities-img-accent {
      width: 55%;
      aspect-ratio: 1;
      object-fit: cover;
      position: absolute;
      bottom: -36px; left: -36px;
      border: 6px solid #fff;
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }
    .amenities-badge {
      position: absolute;
      top: 30px; right: -20px;
      background: var(--gold);
      color: var(--dark);
      padding: 20px;
      text-align: center;
      width: 110px; height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .amenities-badge span:first-child {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 500;
      line-height: 1;
    }
    .amenities-badge span:last-child {
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      margin-top: 4px;
      line-height: 1.3;
      text-align: center;
    }


    /* ── AMENITIES ── */



    /* ── GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .external-reviews-section + .gallery-strip {
      margin-top: clamp(42px, 5vw, 86px);
    }
    .gallery-strip-item {
      overflow: hidden;
      aspect-ratio: 1;
      position: relative;
    }
    .gallery-strip-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .gallery-strip-item:hover img { transform: scale(1.1); }
    .gallery-strip-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.34) 45%, rgba(0,0,0,0.88) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.42), transparent 56%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: clamp(18px, 2.2vw, 30px);
    }
    .gallery-strip-item:hover .gallery-strip-overlay { opacity: 1; }
    .gallery-strip-overlay span {
      color: #fff;
      display: block;
      max-width: min(320px, 100%);
      padding: 10px 12px;
      background: rgba(0,0,0,0.42);
      backdrop-filter: blur(4px);
      font-size: clamp(12px, 1.05vw, 15px);
      letter-spacing: 2.1px;
      line-height: 1.35;
      text-transform: uppercase;
      font-weight: 700;
      text-shadow: 0 2px 18px rgba(0,0,0,0.82);
    }


    /* ── GALLERY STRIP ── */


    /* ── ROOM HEADER ── */
    .room-container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 70px 40px;
    }
    .room-header h1,
    .room-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 400;
      color: var(--dark);
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .room-occupancy {
      font-size: 14px;
      color: var(--text-light);
      font-weight: 400;
      margin-bottom: 26px;
    }
    .room-specs-row {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      padding-bottom: 32px;
      border-bottom: 1px solid #ececec;
      margin-bottom: 36px;
    }
    .room-spec {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text);
    }
    .room-spec svg {
      width: 20px; height: 20px;
      stroke: var(--text); fill: none; stroke-width: 1.4;
      flex-shrink: 0;
    }
    #room-photos,
    #room-video,
    #room-details,
    #room-amenities,
    #room-faq {
      scroll-margin-top: 112px;
    }

    /* ── ROOM HEADER ── */

    /* ── PHOTO STRIP CAROUSEL ── */

    .photo-strip-wrap {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      overflow: hidden;
      touch-action: pan-y;
      cursor: grab;
      user-select: none;
      -webkit-user-select: none;
      background: #fff;
      padding: 32px 0 36px;
    }
    .photo-strip-wrap.dragging { cursor: grabbing; }
    .photo-strip {
      display: flex;
      gap: 10px;
      padding: 0 40px;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: transform;
    }
    .photo-strip.no-transition { transition: none; }
    .photo-strip-item {
      flex-shrink: 0;
      height: 600px;
      overflow: hidden;
      border-radius: 2px;
    }
    .photo-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      pointer-events: none;
      transition: transform 0.6s ease;
    }
    .photo-strip-item:hover img { transform: scale(1.04); }

    /* varied widths */
    .photo-strip-item:nth-child(1)  { width: 340px; }
    .photo-strip-item:nth-child(2)  { width: 520px; }
    .photo-strip-item:nth-child(3)  { width: 380px; }
    .photo-strip-item:nth-child(4)  { width: 480px; }
    .photo-strip-item:nth-child(5)  { width: 300px; }
    .photo-strip-item:nth-child(6)  { width: 560px; }
    .photo-strip-item:nth-child(7)  { width: 360px; }
    .photo-strip-item:nth-child(8)  { width: 440px; }
    /* clones for infinite loop */
    .photo-strip-item:nth-child(9)  { width: 340px; }
    .photo-strip-item:nth-child(10) { width: 520px; }
    .photo-strip-item:nth-child(11) { width: 380px; }
    .photo-strip-item:nth-child(12) { width: 480px; }

    @media (max-width: 768px) {
      .photo-strip-item { height: 260px; }
      .photo-strip-item:nth-child(1)  { width: 240px; }
      .photo-strip-item:nth-child(2)  { width: 340px; }
      .photo-strip-item:nth-child(3)  { width: 260px; }
      .photo-strip-item:nth-child(4)  { width: 310px; }
      .photo-strip-item:nth-child(5)  { width: 200px; }
      .photo-strip-item:nth-child(6)  { width: 360px; }
      .photo-strip-item:nth-child(7)  { width: 240px; }
      .photo-strip-item:nth-child(8)  { width: 290px; }
      .photo-strip-item:nth-child(9)  { width: 240px; }
      .photo-strip-item:nth-child(10) { width: 340px; }
      .photo-strip-item:nth-child(11) { width: 260px; }
      .photo-strip-item:nth-child(12) { width: 310px; }
    }

    /* ── PHOTO STRIP CAROUSEL ── */

    /* ── ROOM VIDEO ── */
    .room-video-section {
      position: relative;
      width: 100vw;
      margin: 72px 0 84px calc(-50vw + 50%);
      padding: clamp(70px, 8vw, 112px) clamp(24px, 5vw, 70px);
      display: grid;
      grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
      gap: clamp(32px, 5vw, 76px);
      align-items: center;
      background:
        radial-gradient(circle at 86% 18%, rgba(14,147,176,0.16), transparent 28%),
        linear-gradient(135deg, #0d0c0a 0%, #14110e 48%, #262018 100%);
      color: #fff;
      overflow: hidden;
    }
    .room-video-section::before {
      content: '';
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255,255,255,0.1);
      pointer-events: none;
    }
    .room-video-copy,
    .room-video-frame {
      position: relative;
      z-index: 1;
    }
    .room-video-copy {
      max-width: 500px;
      margin-left: auto;
    }
    .room-video-copy .section-label {
      color: var(--gold);
      margin-bottom: 18px;
    }
    .room-video-copy .section-title {
      color: #fff;
      font-size: clamp(42px, 5vw, 74px);
      line-height: 0.98;
      margin-bottom: 24px;
    }
    .room-video-copy p {
      color: rgba(255,255,255,0.72);
      font-size: 15.5px;
      line-height: 1.9;
      font-weight: 300;
      margin-bottom: 30px;
    }
    .room-video-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px 24px;
    }
    .room-video-actions cb-book-now-button {
      display: inline-flex;
      line-height: 1;
    }
    .room-video-actions cb-book-now-button .btn-gold.room-video-book-direct,
    .room-video-actions .btn-gold.room-video-book-direct {
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: auto !important;
      min-height: 43px !important;
      padding: 12px 28px !important;
      background: var(--gold) !important;
      border: 1px solid var(--gold) !important;
      border-radius: 0 !important;
      color: var(--cream) !important;
      font-family: 'Montserrat', sans-serif !important;
      font-size: 13px !important;
      font-weight: 700 !important;
      letter-spacing: 2.5px !important;
      line-height: normal !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      white-space: nowrap !important;
      box-shadow: none !important;
      appearance: none !important;
    }
    .room-video-actions cb-book-now-button .btn-gold.room-video-book-direct:hover,
    .room-video-actions .btn-gold.room-video-book-direct:hover {
      background: var(--dark) !important;
      border-color: var(--dark) !important;
      color: var(--cream) !important;
      transform: none !important;
      box-shadow: none !important;
    }
    .room-video-text-link {
      color: rgba(255,255,255,0.82);
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 700;
      border-bottom: 1px solid rgba(255,255,255,0.28);
      padding-bottom: 7px;
      transition: color 0.25s ease, border-color 0.25s ease;
    }
    .room-video-text-link:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }
    .room-video-frame {
      max-width: 980px;
      min-width: 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 34px 90px rgba(0,0,0,0.34);
    }
    .room-video-player,
    .room-video-poster {
      display: block;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #050505;
      border: 1px solid rgba(255,255,255,0.14);
    }
    .room-video-player {
      object-fit: cover;
    }
    .room-video-frame.has-video {
      cursor: pointer;
    }
    .room-video-poster {
      position: relative;
      overflow: hidden;
    }
    .room-video-poster .optimized-picture,
    .room-video-poster img {
      display: block;
      width: 100%;
      height: 100%;
    }
    .room-video-poster img {
      object-fit: cover;
      transform: scale(1.02);
      filter: saturate(0.9) contrast(1.08);
    }
    .room-video-shade {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(0,0,0,0.68), transparent 54%),
        linear-gradient(0deg, rgba(0,0,0,0.52), transparent 58%);
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .room-video-play {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: clamp(72px, 8vw, 104px);
      height: clamp(72px, 8vw, 104px);
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,0.48);
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      color: #fff;
      padding: 0;
      cursor: pointer;
      backdrop-filter: blur(8px);
      box-shadow: 0 20px 54px rgba(0,0,0,0.25);
      transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
      z-index: 3;
      appearance: none;
    }
    .room-video-play:hover,
    .room-video-play:focus-visible {
      transform: translate(-50%, -50%) scale(1.06);
      background: rgba(14,147,176,0.78);
      border-color: rgba(255,255,255,0.74);
      outline: none;
    }
    .room-video-play svg {
      width: 34px;
      height: 34px;
      margin-left: 4px;
    }
    .room-video-note {
      position: absolute;
      left: clamp(22px, 4vw, 44px);
      bottom: clamp(22px, 4vw, 42px);
      color: #fff;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 2;
    }
    .room-video-note span {
      display: block;
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .room-video-note strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 400;
      line-height: 1;
    }
    .room-video-frame.has-video .room-video-shade,
    .room-video-frame.has-video .room-video-note {
      pointer-events: none;
      z-index: 2;
    }
    .room-video-frame.is-playing .room-video-shade,
    .room-video-frame.is-playing .room-video-play,
    .room-video-frame.is-playing .room-video-note {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .room-video-frame.is-pending {
      cursor: default;
    }
    .room-video-poster-static .room-video-note strong {
      color: rgba(255,255,255,0.9);
    }

    /* ── ROOM VIDEO ── */


    /* ── DESCRIPTION ── */
    /* -- ROOM TRUST -- */
    .room-proof-band {
      display: grid;
      grid-template-columns: minmax(320px, 1.25fr) repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin: 0 0 68px;
    }
    .room-proof-card {
      position: relative;
      min-width: 0;
      min-height: 255px;
      padding: clamp(24px, 3vw, 34px);
      border: 1px solid rgba(14,147,176,0.13);
      border-radius: 6px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(20,45,54,0.08);
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .room-proof-card::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      transform: scaleX(0);
      transform-origin: left center;
      background: var(--gold);
      transition: transform 0.35s ease;
    }
    .room-proof-card:hover {
      transform: translateY(-5px);
      border-color: rgba(14,147,176,0.32);
      box-shadow: 0 24px 58px rgba(20,45,54,0.12);
    }
    .room-proof-card:hover::after {
      transform: scaleX(1);
    }
    .room-proof-card--review {
      background:
        linear-gradient(135deg, rgba(14,147,176,0.92), rgba(10,45,55,0.96)),
        #0b2c36;
      color: #fff;
    }
    .room-proof-card--review::after {
      background: #fff;
      opacity: 0.8;
    }
    .room-proof-card--review .section-label {
      color: rgba(255,255,255,0.78);
      margin-bottom: 16px;
    }
    .room-proof-card--review h2 {
      max-width: 440px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(31px, 3vw, 44px);
      font-weight: 400;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 22px;
    }
    .room-proof-card blockquote {
      max-width: 520px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2vw, 30px);
      line-height: 1.32;
      color: rgba(255,255,255,0.92);
      margin-bottom: 22px;
    }
    .room-proof-source {
      color: rgba(255,255,255,0.68);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }
    .room-proof-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      border: 1px solid rgba(14,147,176,0.16);
      border-radius: 50%;
      color: var(--gold);
      background: #f6fbfc;
    }
    .room-proof-icon svg {
      width: 24px;
      height: 24px;
    }
    .room-proof-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 27px;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 13px;
    }
    .room-proof-card p {
      color: var(--text-light);
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
    }
    @media (max-width: 1100px) {
      .room-proof-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .room-proof-card--review {
        grid-column: span 2;
      }
    }

    /* -- DESCRIPTION -- */
    .room-desc p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 22px;
    }

    /* ── SECTION TITLES ── */
    .room-sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--dark);
      margin: 50px 0 22px;
      letter-spacing: 0.5px;
    }


    /* ── AMENITY CARDS (Family-friendly) ── */
    .amenity-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .amenity-card {
      background: #faf7f2;
      border: 1px solid rgba(14,147,176,0.1);
      border-radius: 6px;
      padding: 22px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .amenity-card:hover {
      border-color: rgba(14,147,176,0.28);
      box-shadow: 0 16px 42px rgba(20,45,54,0.08);
      transform: translateY(-3px);
    }
    .amenity-card-icon {
      width: 44px; height: 44px;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      flex-shrink: 0;
      background: #fff;
      border: 1px solid rgba(14,147,176,0.16);
      border-radius: 50%;
    }
    .amenity-card-icon svg {
      width: 30px; height: 30px;
      stroke: var(--gold); fill: none; stroke-width: 1.4;
    }
    .amenity-card-label {
      font-size: 14px;
      color: var(--text);
      font-weight: 400;
    }

    /* ── AMENITY CARDS (Family-friendly) ── */


    /* ── ROOM AMENITIES LIST ── */
    .amenity-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 18px;
    }
    .amenity-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      font-size: 14px;
      color: var(--text);
      background: #fff;
      border: 1px solid rgba(14,147,176,0.1);
      border-radius: 6px;
      transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
    }
    .amenity-row:hover {
      border-color: rgba(14,147,176,0.26);
      box-shadow: 0 12px 34px rgba(20,45,54,0.07);
      transform: translateY(-2px);
    }
    .amenity-row svg {
      width: 24px; height: 24px;
      stroke: var(--gold); fill: none; stroke-width: 1.45;
      flex-shrink: 0;
    }

    /* ── INTRO ── */

    .rooms-intro {
      padding: 90px 40px 40px;
      text-align: center;
      max-width: 990px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 17px; letter-spacing: 4px;
      text-transform: uppercase; color: var(--gold);
      font-weight: 600; margin-bottom: 18px;
    }
    .rooms-intro h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 3.5vw, 48px);
      font-weight: 400; line-height: 1.25;
      color: var(--dark); margin-bottom: 22px;
    }
    .rooms-intro p {
      font-size: 17px; line-height: 1.9;
      color: var(--text-light); font-weight: 300;
      max-width: 680px; margin: 0 auto;
    }


    /* ── INTRO ── */


    /* ── ROOM LIST ── */
    .rooms-list {
      max-width: 1250px;
      margin: 0 auto;
      padding: 40px 0px 100px;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }
    .room-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
    }
    .room-row.reverse .room-media { order: 2; }
    .room-row.reverse .room-info { order: 1; }

    /* ── ROOM LIST ── */


    /* image carousel */

    .room-media {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      touch-action: pan-y;
      background: #eee;
    }
    .room-media-track {
      display: flex;
      height: 100%;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .room-media-slide {
      flex: 0 0 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }
    .room-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.92);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, transform 0.3s;
      box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    }
    .room-arrow:hover { background: var(--gold); }
    .room-arrow:hover svg { color: #fff; }
    .room-arrow svg { width: 16px; height: 16px; color: var(--dark); transition: color 0.3s; }
    .room-arrow.prev { left: 12px; }
    .room-arrow.next { right: 12px; }

    /* image carousel */


    /* info block */

    .room-row-info {
      padding: 20px 60px;
      text-align: center;
    }
    .room-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 45px; font-weight: 400;
      color: var(--dark); margin-bottom: 20px;
      letter-spacing: 1px;
    }
    .room-specs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px 22px;
      margin-bottom: 22px;
      font-size: 13px;
      color: var(--text);
    }
    .room-spec {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      font-weight: 400;
    }
    .room-spec svg {
      width: 20px; height: 20px;
      stroke: var(--text); fill: none;
      stroke-width: 1.4;
      flex-shrink: 0;
    }
    .room-desc {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-light);
      font-weight: 300;
      margin-bottom: 24px;
      max-width: 1440px;
      margin-left: auto;
      margin-right: auto;
    }
    .room-link {
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }
    .room-link:hover { gap: 14px; }
    .room-link svg { width: 14px; height: 14px; }

    /* info block */



        /* top label above occupancy */
    .room-top-meta {
      display: flex;
      justify-content: center;
      font-size: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 4px;
      gap: 14px;
      flex-wrap: wrap;
    }
    .room-top-meta span { position: relative; }

    /* ── BENEFITS STRIP ── */

    .benefits-strip {
      background: #f7f4ef;
      padding: 60px 30px;
    }
    .benefits-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .benefit-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .benefit-icon {
      width: 44px; height: 44px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }
    .benefit-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
    .benefit-text {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text);
      font-weight: 400;
    }

    /* ── BENEFITS STRIP ── */



    /* ── MAIN CONTENT ── */

    .page-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 90px 40px 80px;
    }

    /* two-column layout */
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 70px;
      align-items: start;
    }

    /* left column */
    .content-left .page-label {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--text-light);
      font-weight: 500;
      margin-bottom: 18px;
    }
    .content-left h1,
    .content-left h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 400;
      color: var(--dark);
      letter-spacing: 1px;
      margin-bottom: 28px;
      line-height: 1.15;
    }
    .content-left p {
      font-size: 14.5px;
      line-height: 1.9;
      color: var(--text);
      font-weight: 300;
    }
    .content-left p + p {
      margin-top: 18px;
    }
    .btn-download-menu {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 32px;
      padding: 13px 28px;
      background: var(--gold);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--gold);
      transition: background 0.3s ease, color 0.3s ease;
      cursor: pointer;
    }
    .btn-download-menu:hover {
      background: transparent;
      color: var(--gold);
    }
    .btn-download-menu svg {
      width: 16px; height: 16px;
      stroke: currentColor; fill: none; stroke-width: 2;
      flex-shrink: 0;
    }

    /* right column — info card */
    .info-card {
      border: 1px solid #e0ddd8;
      padding: 32px 30px;
      background: #faf8f5;
    }
    .info-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--dark);
      margin-bottom: 24px;
      letter-spacing: 0.5px;
    }
    .info-list {
      list-style: none;
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .info-list li {
      font-size: 14px;
      color: var(--text);
      font-weight: 300;
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1.5;
    }
    .info-list li::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .info-divider {
      height: 1px;
      background: #e0ddd8;
      margin: 24px 0;
    }
    .info-phone-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .info-phone-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
    }
    .info-phone-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--gold);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .info-phone-icon svg {
      width: 16px; height: 16px;
      stroke: #fff; fill: none; stroke-width: 2;
    }
    .info-phone-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--dark);
      letter-spacing: 1px;
      text-decoration: none;
    }
    .info-contact-btn {
      display: block;
      width: 100%;
      padding: 15px 20px;
      background: var(--dark);
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
      font-family: 'Montserrat', sans-serif;
      transition: background 0.3s ease, color 0.3s ease;
    }
    .info-contact-btn:hover {
      background: var(--gold);
      color: #fff;
    }

    /* ── MAIN CONTENT ── */



    /* SHARED SECTION STYLES  */
    .section-eyebrow {
      font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--text-light); font-weight: 600; margin-bottom: 18px;
    }
    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 66px);
      font-weight: 400; color: var(--dark);
      line-height: 1.2; margin-bottom: 26px; letter-spacing: 0.5px;
    }
    .section-p {
      font-size: 14px; line-height: 1.9;
      color: var(--text); font-weight: 300;
      margin-bottom: 18px;
    }
    .section-p:last-child { margin-bottom: 0; }

    /* SHARED SECTION STYLES  */


    /*  INTRO SECTION  */
    .intro-section {
      padding: 90px 40px 60px;
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }
    .intro-section .section-eyebrow { text-align: center; }
    .intro-section .section-h2 { text-align: center; }
    .intro-section .section-p { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

    /*  INTRO SECTION  */


    /* FULL-WIDTH BEACH IMAGE */


    /*  TWO-COL: images left / text right */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1260px;
      margin: 0 auto;
      padding: 90px 40px;
      align-items: center;
    }
    .split-section.reverse { direction: rtl; }
    .split-section.reverse > * { direction: ltr; }

    /* stacked image pair */
    .img-stack {
      position: relative;
      padding: 0 30px 40px 0;
    }
    .split-section.reverse .img-stack { padding: 0 0 40px 30px; }
    .img-stack .img-main {
      width: 88%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
    }
    .img-stack .img-accent {
      position: absolute;
      bottom: 0; right: 0;
      width: 75%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      border: 5px solid #fff;
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }
    .split-section.reverse .img-stack .img-accent { right: auto; left: 0; }

    /* text block */
    .split-text { padding: 0 20px; }
    .split-text .section-eyebrow { margin-bottom: 14px; }

    /*  TWO-COL: images left / text right */



    /*  AMENITIES STRIP */

    .amenities-strip {
      background: #faf8f5;
      padding: 70px 40px 80px;
      text-align: center;
    }
    .amenities-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px 10px;
    }
    .amenity-card-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 26px 10px;
      background: #fff;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }
    .amenity-card-item:hover {
      box-shadow: 0 8px 28px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }
    .amenity-card-icon {
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
    }
    .amenity-card-icon svg {
      width: 36px; height: 36px;
      stroke: var(--text-light); fill: none; stroke-width: 1.3;
      transition: stroke 0.3s;
    }
    .amenity-card-item:hover .amenity-card-icon svg { stroke: var(--gold); }
    .amenity-label {
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text);
      font-weight: 500;
      text-align: center;
      line-height: 1.4;
    }
    
    /*  AMENITIES STRIP */

        /* SHARED SECTION */

    .section-eyebrow {
      font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
      color: var(--text-light); font-weight: 600; margin-bottom: 18px;
    }
    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 66px);
      font-weight: 400; color: var(--dark);
      line-height: 1.1; margin-bottom: 26px; letter-spacing: 0.5px;
    }
    .section-p {
      font-size: 14px; line-height: 1.9;
      color: var(--text); font-weight: 300;
      margin-bottom: 18px;
    }

    /* SHARED SECTION */


        /* CONTACT INTRO  */

    .contact-shell { background: var(--paper); }
    .contact-intro {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(380px, 48%);
      align-items: stretch;
      min-height: 620px;
    }
    .contact-copy {
      padding: 80px 7vw 70px;
      background: #fbfaf7;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-copy .section-eyebrow { margin-bottom: 24px; }
    .contact-copy .section-h2 {
      max-width: 560px;
      margin-bottom: 20px;
      font-size: clamp(34px, 3.8vw, 52px);
    }
    .contact-copy .section-p {
      max-width: 560px;
      margin-bottom: 32px;
    }

    /* CONTACT INTRO  */


        /* ── CONTACT FORM */

    .contact-form {
      max-width: 560px;
      display: grid;
      gap: 18px;
    }
    .form-hp {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }
    .contact-form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(26,26,26,0.12);
      background: rgba(255,255,255,0.88);
      padding: 18px 20px;
      font: inherit;
      color: var(--text);
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }
    .contact-form select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
      background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
      padding-right: 42px;
    }
    .contact-form textarea {
      min-height: 170px;
      resize: vertical;
    }
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(14,147,176,0.08);
    }
    .contact-form__row--compact {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
    .contact-submit {
      width: fit-content;
      border: none;
      background: var(--gold);
      color: #fff;
      padding: 15px 34px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }
    .contact-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(14,147,176,0.22);
      background: #0a809a;
    }
    /* ── CONTACT VISUAL (right-side image panel) ──
       HTML: <div class="contact-visual"><img ...></div>
    */
    .contact-visual {
      min-height: 520px;
      overflow: hidden;
      background: #d8e6ea;
    }
    .contact-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }


    /* ── CONTACT FORM */


        /* GOOGLE MAP SECTION */

    .contact-map-section {
      padding: 70px 40px;
      background: var(--paper-strong);
      border-top: 1px solid rgba(26,26,26,0.06);
      border-bottom: 1px solid rgba(26,26,26,0.06);
    }
    .contact-map-frame {
      max-width: 1180px;
      margin: 0 auto;
      height: 460px;
      overflow: hidden;
      background: #dfe7e8;
      position: relative;
    }
    .contact-map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    /* GOOGLE MAP SECTION */


        /* ══════════════════════════════
       FILTER TABS
    ══════════════════════════════ */
    .page-gallery .gallery-toolbar {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }
    .page-gallery .gallery-filters {
      display: inline-flex;
      max-width: 100%;
      gap: 4px;
      overflow-x: auto;
      padding: 6px;
      border: 1px solid rgba(26,26,26,0.08);
      border-radius: 8px;
      background: rgba(255,255,255,0.9);
      box-shadow: 0 18px 50px rgba(26,26,26,0.08);
      scrollbar-width: none;
    }
    .page-gallery .gallery-filters::-webkit-scrollbar {
      display: none;
    }
    .page-gallery .filter-btn {
      min-height: 42px;
      padding: 0 20px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: var(--text-light);
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      letter-spacing: 1.9px;
      text-transform: uppercase;
      font-weight: 700;
      white-space: nowrap;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }
    .page-gallery .filter-btn:hover,
    .page-gallery .filter-btn.active {
      background: var(--dark);
      color: #fff;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    /* ══════════════════════════════
       MASONRY GALLERY
    ══════════════════════════════ */
    .page-gallery .gallery-wrap {
      width: min(1380px, calc(100% - 48px));
      margin: 0 auto;
      padding: 34px 0 96px;
    }
    .page-gallery .masonry-grid {
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      grid-auto-rows: minmax(190px, 17vw);
      grid-auto-flow: dense;
      gap: 12px;
      columns: auto;
    }
    .page-gallery .masonry-item {
      grid-column: span 3;
      grid-row: span 1;
      min-height: 260px;
      break-inside: auto;
      overflow: hidden;
      margin-bottom: 0;
      border-radius: 6px;
      position: relative;
      isolation: isolate;
      cursor: pointer;
      background: #dfe9eb;
    }
    .page-gallery .masonry-item.is-hero {
      grid-column: span 6;
      grid-row: span 2;
    }
    .page-gallery .masonry-item.is-wide {
      grid-column: span 6;
    }
    .page-gallery .masonry-item.is-full {
      grid-column: span 12;
    }
    .page-gallery .masonry-item.is-half {
      grid-column: span 6;
    }
    .page-gallery .masonry-item.is-third {
      grid-column: span 4;
    }
    .page-gallery .masonry-item.is-tall {
      grid-row: span 2;
    }
    .page-gallery .masonry-item:focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 4px;
    }
    .page-gallery .masonry-item .optimized-picture,
    .page-gallery .masonry-item .optimized-picture > img,
    .page-gallery .masonry-item img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .page-gallery .masonry-item img {
      object-fit: cover;
      transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    }
    .page-gallery .masonry-item:hover img,
    .page-gallery .masonry-item:focus-visible img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.02);
    }
    .page-gallery .masonry-item .overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-start;
      padding: 18px;
      background: linear-gradient(180deg, rgba(0,0,0,0.12) 24%, rgba(0,0,0,0.84) 100%);
      pointer-events: none;
      transition: background 0.35s ease;
    }
    .page-gallery .masonry-item:hover .overlay,
    .page-gallery .masonry-item:focus-visible .overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0.18) 18%, rgba(0,0,0,0.9) 100%);
    }
    .page-gallery .masonry-item .overlay-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,0.68);
      border-radius: 50%;
      background: rgba(0,0,0,0.24);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity 0.28s ease, transform 0.28s ease, background 0.28s ease;
    }
    .page-gallery .masonry-item .overlay-icon svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
    }
    .page-gallery .masonry-item:hover .overlay-icon,
    .page-gallery .masonry-item:focus-visible .overlay-icon {
      opacity: 1;
      transform: translateY(0);
      background: var(--gold);
      border-color: var(--gold);
    }
    .page-gallery .gallery-tile-copy {
      max-width: min(360px, 100%);
      color: #fff;
      text-shadow: 0 3px 18px rgba(0,0,0,0.82), 0 1px 2px rgba(0,0,0,0.72);
    }
    .page-gallery .gallery-tile-copy span {
      display: block;
      margin-bottom: 8px;
      color: rgba(255,255,255,0.72);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.8px;
      line-height: 1.2;
      text-transform: uppercase;
    }
    .page-gallery .gallery-tile-copy strong {
      display: block;
      color: #fff;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(21px, 1.7vw, 30px);
      font-weight: 400;
      letter-spacing: 0;
      line-height: 1.02;
    }
    .page-gallery .masonry-item.is-hero .gallery-tile-copy strong,
    .page-gallery .masonry-item.is-wide .gallery-tile-copy strong {
      font-size: clamp(28px, 3vw, 48px);
    }

    /* hide/show by category */
    .page-gallery .masonry-item[data-cat].hidden { display: none; }

    @media (max-width: 1100px) {
      .page-gallery .gallery-wrap {
        width: min(960px, calc(100% - 40px));
      }
      .page-gallery .masonry-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: minmax(210px, 28vw);
      }
      .page-gallery .masonry-item {
        grid-column: span 3;
      }
      .page-gallery .masonry-item.is-hero,
      .page-gallery .masonry-item.is-wide,
      .page-gallery .masonry-item.is-full,
      .page-gallery .masonry-item.is-compact-wide {
        grid-column: span 6;
      }
    }

    @media (max-width: 640px) {
      .page-gallery .gallery-wrap {
        width: calc(100% - 28px);
        padding: 24px 0 72px;
      }
      .page-gallery .gallery-toolbar {
        justify-content: flex-start;
        margin-bottom: 14px;
      }
      .page-gallery .gallery-filters {
        width: 100%;
      }
      .page-gallery .filter-btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: 9px;
        letter-spacing: 1.4px;
      }
      .page-gallery .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
      }
      .page-gallery .masonry-item,
      .page-gallery .masonry-item.is-hero,
      .page-gallery .masonry-item.is-wide,
      .page-gallery .masonry-item.is-full,
      .page-gallery .masonry-item.is-half,
      .page-gallery .masonry-item.is-third,
      .page-gallery .masonry-item.is-compact-wide,
      .page-gallery .masonry-item.is-tall {
        grid-column: 1;
        grid-row: auto;
        min-height: 0;
        aspect-ratio: 4 / 5;
      }
      .page-gallery .masonry-item.is-wide {
        aspect-ratio: 16 / 11;
      }
      .page-gallery .masonry-item .overlay {
        padding: 16px;
      }
      .page-gallery .gallery-tile-copy strong,
      .page-gallery .masonry-item.is-hero .gallery-tile-copy strong,
      .page-gallery .masonry-item.is-wide .gallery-tile-copy strong {
        font-size: 25px;
      }
    }

    /* ══════════════════════════════
       LIGHTBOX
    ══════════════════════════════ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,0.93);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      touch-action: pan-y;
      transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    }
    .lightbox.open {
      opacity: 1;
      visibility: visible;
      transition-delay: 0s, 0s;
    }
    .lightbox.open .lightbox-img-wrap,
    .lightbox.open .lb-close,
    .lightbox.open .lb-prev,
    .lightbox.open .lb-next,
    .lightbox.open .lb-caption,
    .lightbox.open .lb-counter {
      visibility: visible;
    }
    .lightbox-img-wrap {
      max-width: 90vw;
      max-height: 78vh;
      position: relative;
    }
    .lightbox-img-wrap img {
      max-width: 90vw;
      max-height: 78vh;
      display: block;
      object-fit: contain;
      box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    }
    .lb-close {
      position: fixed;
      top: 24px; right: 24px;
      z-index: 9002;
      width: 42px; height: 42px;
      background: rgba(0,0,0,0.24);
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.3s, background 0.3s;
    }
    .lb-close:hover { border-color: var(--gold); background: var(--gold); }
    .lb-close svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; }
    .lb-prev, .lb-next {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      width: 50px; height: 50px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, border-color 0.3s;
      z-index: 9001;
    }
    .lb-prev { left: 24px; }
    .lb-next { right: 24px; }
    .lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); }
    .lb-prev svg, .lb-next svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; }
    .lb-caption {
      position: fixed;
      bottom: 52px;
      left: 50%;
      width: min(900px, calc(100vw - 48px));
      transform: translateX(-50%);
      color: rgba(255,255,255,0.88);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.1;
      text-align: center;
      text-shadow: 0 2px 20px rgba(0,0,0,0.75);
      pointer-events: none;
    }
    .lb-counter {
      position: fixed;
      bottom: 28px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.55);
      font-size: 12px; letter-spacing: 2px;
    }


    /* ── FOOTER ── */

    footer {
      background: #0d0c0a;
      color: rgba(255,255,255,0.68);
      padding: 80px 60px 0;
    }
    .footer-top {
      display: grid;
      grid-template-columns: minmax(300px, 1.12fr) minmax(170px, 0.78fr) minmax(270px, 1fr) minmax(280px, 1.05fr);
      gap: clamp(26px, 2.8vw, 52px);
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 300;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
      margin-bottom: 6px;
    }
    .footer-logo-sub {
      font-size: 14px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 22px;
    }
    .footer-brand p {
      font-size: 15px;
      line-height: 1.9;
      max-width: 360px;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
    .footer-social {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
    }
    .footer-social svg { width: 15px; height: 15px; }
    .footer-social:hover { border-color: var(--gold); color: var(--gold); }
    .footer-col h2,
    .footer-col h4 {
      font-size: 18px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col a {
      color: rgba(255,255,255,0.66);
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-contact-item {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 15.5px;
      align-items: flex-start;
    }
    .footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .footer-contact-item a {
      color: rgba(255,255,255,0.68);
      text-decoration: none;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
    }
    .footer-bottom p {
      font-size: 14px;
      color: rgba(255,255,255,0.42);
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-bottom-links a:hover { color: var(--gold); }

    .optimized-picture {
      display: block;
      width: 100%;
    }
    .image-skeleton,
    img[data-img-skeleton] {
      background: linear-gradient(110deg, #ece7de 8%, #f7f4ef 18%, #e7e1d7 33%);
      background-size: 220% 100%;
      animation: imageSkeleton 1.35s ease-in-out infinite;
    }
    .optimized-picture.image-skeleton {
      overflow: hidden;
    }
    .optimized-picture.image-skeleton > img {
      opacity: 0;
      transition: opacity 0.45s ease;
    }
    .optimized-picture.image-skeleton.is-loaded,
    img[data-img-skeleton][data-img-loaded="true"] {
      background: transparent;
      animation: none;
    }
    .optimized-picture.image-skeleton.is-loaded > img {
      opacity: 1;
    }
    @keyframes imageSkeleton {
      0% { background-position: 180% 0; }
      100% { background-position: -80% 0; }
    }
    .optimized-picture > img {
      width: 100%;
      display: block;
    }
    .about-gallery-item .optimized-picture,
    .room-img .optimized-picture,
    .feature-card-img .optimized-picture,
    .gallery-strip-item .optimized-picture,
    .img-stack .optimized-picture,
    .contact-visual .optimized-picture,
    .photo-strip-item .optimized-picture,
    .similar-room-card .optimized-picture,
    .amenities-right .optimized-picture {
      height: 100%;
    }
    .about-gallery-item .optimized-picture > img,
    .room-img .optimized-picture > img,
    .feature-card-img .optimized-picture > img,
    .gallery-strip-item .optimized-picture > img,
    .img-stack .optimized-picture > img,
    .contact-visual .optimized-picture > img,
    .photo-strip-item .optimized-picture > img,
    .similar-room-card .optimized-picture > img,
    .amenities-right .optimized-picture > img {
      height: 100%;
      object-fit: cover;
    }
    .masonry-item .optimized-picture,
    .masonry-item .optimized-picture > img {
      height: auto;
    }
    .similar-room-card .optimized-picture {
      height: 230px;
    }

    .external-reviews-section,
    .faq-section,
    .notfound-section,
    .similar-rooms {
      padding: 96px 60px;
      background: #fff;
    }
    .external-reviews-section {
      background: #f6fbfc;
    }
    .similar-rooms-grid,
    .notfound-grid,
    .room-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }
    .room-detail-card,
    .notfound-card,
    .similar-room-card a {
      background: #fff;
      border: 1px solid rgba(14,147,176,0.14);
      box-shadow: 0 18px 45px rgba(20, 45, 54, 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .room-detail-card:hover,
    .notfound-card:hover,
    .similar-room-card a:hover {
      transform: translateY(-5px);
      border-color: rgba(14,147,176,0.34);
      box-shadow: 0 24px 58px rgba(20, 45, 54, 0.12);
    }
    .external-reviews-section {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      margin-top: clamp(56px, 7vw, 112px);
      color: #fff;
      background: #071f22;
    }
    .external-reviews-section::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(4, 20, 23, 0.96) 0%, rgba(4, 20, 23, 0.88) 46%, rgba(4, 20, 23, 0.58) 100%),
        url('/image/admin/curated-photo-1571003123894-1f0594d2b5d9-S10-21-beachfront-hotel.jpg') center / cover no-repeat;
      transform: scale(1.02);
    }
    .external-reviews-section::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: -1;
      height: 36%;
      background: linear-gradient(180deg, rgba(7, 31, 34, 0) 0%, rgba(7, 31, 34, 0.94) 100%);
      pointer-events: none;
    }
    #external-reviews-title {
      scroll-margin-top: 132px;
    }
    .external-reviews-shell {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: end;
    }
    .external-reviews-header {
      max-width: 620px;
    }
    .external-reviews-header .section-label {
      color: #7ed7e8;
    }
    .external-reviews-header .section-title {
      color: #fff;
      font-size: clamp(48px, 5.4vw, 78px);
      line-height: 0.98;
      text-wrap: balance;
    }
    .external-reviews-intro {
      max-width: 520px;
      margin-top: 22px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 17px;
      line-height: 1.85;
    }
    .external-reviews-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px 22px;
      margin-top: 32px;
    }
    .external-reviews-secondary-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-decoration: none;
      text-transform: uppercase;
    }
    .external-reviews-secondary-cta:hover {
      color: #7ed7e8;
    }
    .external-reviews-secondary-cta svg {
      width: 15px;
      height: 15px;
    }
    .external-review-summary-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .external-review-summary-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 18px 24px;
      align-items: start;
      min-height: 184px;
      padding: 26px;
      color: var(--dark);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(255, 255, 255, 0.62);
      border-radius: 6px;
      box-shadow: 0 24px 65px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(10px);
    }
    .external-review-icon {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border: 1px solid rgba(14,147,176,0.2);
      background: #083c45;
      border-radius: 4px;
    }
    .external-review-icon svg {
      width: 24px;
      height: 24px;
    }
    .external-review-copy {
      display: grid;
      gap: 10px;
      color: var(--text-light);
      font-size: 14.5px;
      line-height: 1.75;
    }
    .external-review-platform {
      font-family: 'Cormorant Garamond', serif;
      color: var(--dark);
      font-size: 32px;
      line-height: 1.1;
    }
    .external-review-rating {
      min-width: 118px;
      display: grid;
      gap: 8px;
      justify-items: end;
      color: var(--text-light);
      font-size: 12px;
      line-height: 1.5;
      text-align: right;
    }
    .external-review-rating strong {
      color: var(--dark);
      font-family: 'Cormorant Garamond', serif;
      font-size: 54px;
      font-weight: 500;
      line-height: 0.95;
    }
    .external-review-stars {
      display: inline-flex;
      gap: 4px;
      color: var(--gold);
    }
    .external-review-stars svg {
      width: 15px;
      height: 15px;
    }
    .external-review-stars .is-empty {
      opacity: 0.24;
    }
    .external-review-cta {
      grid-column: 1 / -1;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      text-decoration: none;
    }
    .external-review-cta:hover {
      color: var(--dark);
    }
    .external-review-cta svg {
      width: 15px;
      height: 15px;
    }
    .external-review-slider {
      max-width: 1180px;
      margin: clamp(44px, 6vw, 70px) auto 0;
    }
    .external-review-slider-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin: 0 0 22px;
    }
    .external-review-slider-label {
      color: #7ed7e8;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.2px;
      text-transform: uppercase;
    }
    .external-review-slider-head h3 {
      margin: 8px 0 0;
      color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 3.4vw, 48px);
      font-weight: 400;
      line-height: 1.12;
    }
    .external-review-controls {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }
    .external-review-arrow {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 4px;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
      cursor: pointer;
      transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    }
    .external-review-arrow:hover:not(:disabled) {
      color: #fff;
      background: var(--teal);
      transform: translateY(-2px);
    }
    .external-review-arrow:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }
    .external-review-arrow svg {
      width: 18px;
      height: 18px;
    }
    .external-review-track-wrap {
      overflow: hidden;
    }
    .external-review-quote-track {
      display: flex;
      gap: 22px;
      will-change: transform;
    }
    .external-review-quote-card {
      position: relative;
      overflow: hidden;
      flex: 0 0 calc((100% - 44px) / 3);
      min-height: 318px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 34px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 6px;
      box-shadow: 0 26px 62px rgba(0, 0, 0, 0.22);
    }
    .external-review-quote-card::before {
      content: "\201C";
      position: absolute;
      right: 24px;
      top: 12px;
      color: rgba(14,147,176,0.1);
      font-family: 'Cormorant Garamond', serif;
      font-size: 118px;
      line-height: 1;
      pointer-events: none;
    }
    .external-review-quote-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .external-review-source {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
    }
    .external-review-source svg {
      width: 16px;
      height: 16px;
    }
    .external-review-quote-card blockquote {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--dark);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(29px, 2.1vw, 38px);
      line-height: 1.12;
    }
    .external-review-meta {
      position: relative;
      z-index: 1;
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: var(--text-light);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .external-review-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 26px;
    }
    .external-review-dot {
      width: 8px;
      height: 8px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.34);
      cursor: pointer;
      transition: width 0.25s ease, background 0.25s ease;
    }
    .external-review-dot.active {
      width: 28px;
      background: #7ed7e8;
    }
    .faq-section {
      background: var(--cream);
    }
    .faq-header {
      align-items: center;
    }
    .faq-list {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }
    .faq-item {
      background: #fff;
      border: 1px solid rgba(14,147,176,0.14);
      box-shadow: 0 12px 34px rgba(20, 45, 54, 0.06);
    }
    .faq-item summary {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 24px;
      color: var(--dark);
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      list-style: none;
    }
    .faq-item summary::-webkit-details-marker {
      display: none;
    }
    .faq-item summary::after {
      content: '+';
      color: var(--gold);
      font-size: 24px;
      line-height: 1;
      flex: 0 0 auto;
    }
    .faq-item[open] summary::after {
      content: '-';
    }
    .faq-item p {
      padding: 0 24px 24px;
      line-height: 1.8;
      color: var(--text-light);
      max-width: 820px;
    }
    .room-detail-grid {
      margin: 30px 0 70px;
    }
    .room-container > .faq-section {
      margin-top: clamp(76px, 8vw, 116px);
      margin-bottom: clamp(72px, 7vw, 104px);
      padding: clamp(72px, 7vw, 96px) clamp(28px, 5vw, 60px);
    }
    .room-detail-card {
      padding: 30px;
    }
    .room-detail-icon,
    .notfound-card svg {
      width: 42px;
      height: 42px;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .room-detail-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: var(--dark);
      margin-bottom: 12px;
    }
    .room-detail-card p {
      color: var(--text-light);
      line-height: 1.75;
      font-size: 14px;
    }
    .similar-rooms {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 0;
    }
    .similar-room-card {
      list-style: none;
    }
    .similar-room-card a {
      display: block;
      overflow: hidden;
      color: var(--dark);
      text-decoration: none;
    }
    .similar-room-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
    }
    .similar-room-card span {
      display: block;
      padding: 20px 22px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 25px;
    }
    .notfound-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .page-notfound .hero {
      height: 74vh;
      min-height: 560px;
    }
    .page-notfound .hero-sub {
      max-width: 980px;
      margin: 26px auto 34px;
      line-height: 1.65;
    }
    .page-notfound .hero-cta {
      justify-content: center;
      gap: 18px;
    }
    .page-notfound .notfound-section {
      padding-top: 82px;
      padding-bottom: 110px;
    }
    .page-notfound .section-header {
      margin-bottom: 42px;
    }
    .notfound-card {
      padding: 34px 24px;
      color: var(--dark);
      text-decoration: none;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    .notfound-card span {
      font-size: 14px;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      font-weight: 700;
    }
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 1100;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 18px;
      background: #25d366;
      color: #082a15;
      border-radius: 999px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      box-shadow: 0 18px 42px rgba(37,211,102,0.34);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 24px 54px rgba(37,211,102,0.44);
    }
    .whatsapp-float.is-footer-visible {
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
    }
    .whatsapp-float svg {
      width: 23px;
      height: 23px;
    }
    .grecaptcha-badge {
      display: none !important;
      visibility: hidden !important;
    }
    .recaptcha-disclaimer {
      margin: -8px 0 0;
      color: rgba(44, 44, 44, 0.58);
      font-size: 12px;
      line-height: 1.6;
    }
    .recaptcha-disclaimer a {
      color: var(--teal);
      text-decoration: none;
      font-weight: 700;
    }
    .recaptcha-disclaimer a:hover {
      text-decoration: underline;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes scrollLine {
      0%   { transform: scaleY(0); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: top; }
      50.01% { transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ── REVEAL ON SCROLL ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    /* -- SITE-WIDE MOTION LAYER -- */
    .motion-ready .motion-reveal {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
      filter: blur(6px);
      transition:
        opacity 0.75s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s ease;
      will-change: opacity, transform, filter;
    }
    .motion-ready .motion-reveal.motion-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }
    .motion-ready .motion-reveal.motion-left,
    .motion-ready .motion-reveal.motion-right { transform: translate3d(0, 24px, 0); }
    .motion-ready .motion-reveal.motion-zoom { transform: translate3d(0, 18px, 0) scale(0.96); }
    .motion-ready .motion-reveal.motion-soft { transform: translate3d(0, 18px, 0); }
    .motion-ready .motion-reveal.motion-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }
    .motion-ready .policy-panel {
      opacity: 1;
      transform: none;
      filter: none;
    }

    .motion-ready .hero .hero-slide.active {
      animation: heroKenBurns 8s ease-out forwards;
    }
    .nav-logo img {
      transition: transform 0.35s ease, filter 0.35s ease;
    }
    .nav-logo:hover img {
      transform: translateY(-2px) scale(1.03);
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.22));
    }
    .room-card,
    .feature-card,
    .amenity-card-item,
    .benefit-item,
    .masonry-item,
    .info-card {
      transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    }
    .amenity-card-item:hover,
    .benefit-item:hover,
    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 44px rgba(0,0,0,0.08);
    }
    .masonry-item .optimized-picture > img,
    .gallery-strip-item .optimized-picture > img,
    .photo-strip-item .optimized-picture > img,
    .similar-room-card .optimized-picture > img {
      transition:
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease,
        filter 0.45s ease;
    }
    .masonry-item:hover .optimized-picture > img,
    .gallery-strip-item:hover .optimized-picture > img,
    .photo-strip-item:hover .optimized-picture > img,
    .similar-room-card a:hover .optimized-picture > img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.02);
    }

    @keyframes heroKenBurns {
      from { transform: scale(1); }
      to { transform: scale(1.055); }
    }

    .content-page {
      background: #fff;
    }
    .tablego-section {
      padding: 96px 40px 112px;
      background:
        radial-gradient(circle at 16% 12%, rgba(14,147,176,0.12), transparent 32%),
        linear-gradient(135deg, #f8f4ed 0%, #fffaf2 52%, #efe7dc 100%);
      position: relative;
      overflow: hidden;
    }
    .olins-page {
      background: #fbfaf7;
    }
    .olins-page > .breadcrumbs {
      margin: 0 auto;
      padding-top: 22px;
    }
    .olins-hero .hero-overlay {
      background: linear-gradient(to bottom, rgba(0,0,0,0.62), rgba(0,0,0,0.34) 46%, rgba(0,0,0,0.72));
    }
    .olins-hero .hero-sub {
      max-width: 980px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.55;
    }
    .olins-hero .hero-cta {
      margin-top: 28px;
    }
    .olins-intro {
      max-width: 1280px;
      margin: 0 auto;
      padding: 52px 40px 80px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
      gap: clamp(46px, 6vw, 92px);
      align-items: center;
    }
    .olins-intro-copy h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5.2vw, 78px);
      line-height: 1;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 24px;
    }
    .olins-intro-copy p {
      font-size: 16px;
      line-height: 1.95;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 18px;
    }
    .olins-notes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }
    .olins-notes a {
      border: 1px solid rgba(14,147,176,0.24);
      color: var(--gold);
      padding: 10px 14px;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      background: rgba(14,147,176,0.05);
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }
    .olins-notes a:hover,
    .olins-notes a:focus-visible {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }
    .olins-image-pair {
      display: grid;
      grid-template-columns: 0.86fr 1fr;
      gap: 18px;
      align-items: end;
    }
    .olins-image-pair picture,
    .olins-image-pair img {
      width: 100%;
      display: block;
    }
    .olins-image-pair picture:first-child {
      aspect-ratio: 4/5;
      margin-bottom: 72px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.14);
    }
    .olins-image-pair picture:last-child {
      aspect-ratio: 4/3;
      box-shadow: 0 34px 90px rgba(0,0,0,0.16);
    }
    .olins-image-pair img {
      height: 100%;
      object-fit: cover;
    }
    .olins-highlights {
      background: #0d0c0a;
      color: #fff;
      padding: 86px 40px 96px;
    }
    .olins-highlights .section-header {
      color: #fff;
      margin-bottom: 46px;
    }
    .olins-highlights .section-title {
      color: #fff;
      max-width: 860px;
    }
    .olins-highlight-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .olins-highlight-grid article {
      background: #0d0c0a;
      padding: clamp(28px, 4vw, 46px);
      min-height: 300px;
    }
    .olins-highlight-grid span {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 4px;
      font-weight: 700;
    }
    .olins-highlight-grid h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 400;
      line-height: 1.05;
      margin: 26px 0 18px;
    }
    .olins-highlight-grid p {
      color: rgba(255,255,255,0.7);
      font-size: 15px;
      line-height: 1.85;
      font-weight: 300;
    }
    .reservation-shell {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(330px, 0.92fr) minmax(520px, 1.08fr);
      gap: clamp(26px, 4vw, 54px);
      align-items: stretch;
    }
    .reservation-copy {
      position: relative;
      min-height: 620px;
      padding: clamp(34px, 4.5vw, 58px);
      background: #0d0c0a;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(0,0,0,0.16);
    }
    .reservation-copy::before {
      content: '';
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(255,255,255,0.14);
      pointer-events: none;
    }
    .reservation-copy .section-label {
      color: var(--gold);
      margin-bottom: 18px;
    }
    .reservation-copy .section-title {
      color: #fff;
      font-size: clamp(44px, 4.8vw, 72px);
      line-height: 0.98;
      margin-bottom: 24px;
    }
    .reservation-copy p {
      color: rgba(255,255,255,0.72);
      max-width: 520px;
      font-size: 15.5px;
      line-height: 1.9;
      font-weight: 300;
    }
    .reservation-photo {
      height: 220px;
      margin: 32px 0;
      overflow: hidden;
    }
    .reservation-photo .optimized-picture,
    .reservation-photo img {
      display: block;
      width: 100%;
      height: 100%;
    }
    .reservation-photo img {
      object-fit: cover;
      filter: saturate(0.95) contrast(1.06);
    }
    .reservation-meta {
      display: grid;
      gap: 14px;
    }
    .reservation-meta span {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      line-height: 1.5;
      letter-spacing: 0.4px;
    }
    .reservation-meta svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
      flex: 0 0 auto;
    }
    .reservation-widget {
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(26,26,26,0.08);
      padding: clamp(20px, 3vw, 34px);
      box-shadow: 0 34px 90px rgba(20,45,54,0.14);
      backdrop-filter: blur(8px);
    }
    .reservation-widget-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 22px;
    }
    .reservation-widget-head span {
      display: block;
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .reservation-widget-head h3 {
      font-family: 'Cormorant Garamond', serif;
      color: var(--dark);
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 400;
      line-height: 1;
    }
    .reservation-widget-head .btn-gold {
      white-space: nowrap;
    }
    .tablego-frame {
      max-width: none;
      margin: 0;
      background: #fff;
      border: 1px solid rgba(26,26,26,0.08);
      box-shadow: none;
      overflow: hidden;
      position: relative;
    }
    .tablego-frame iframe {
      display: block;
      width: 100%;
      min-height: 600px;
      border: 0;
    }
    .iframe-fallback {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 36px;
      text-align: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(10,10,10,0.86), rgba(8,58,61,0.78)),
        radial-gradient(circle at 50% 30%, rgba(0,169,199,0.18), transparent 46%);
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }
    .iframe-status.is-loaded .iframe-fallback {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .iframe-fallback span {
      color: var(--accent);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .iframe-fallback strong {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 400;
      line-height: 1;
    }
    .iframe-fallback p {
      max-width: 420px;
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 15px;
      line-height: 1.7;
    }
    .iframe-fallback a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 24px;
      background: var(--accent);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .iframe-fallback a:hover {
      background: #fff;
      color: var(--dark);
    }
    .page-card-grid {
      max-width: 1240px;
      margin: 0 auto;
      padding: 30px 40px 100px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
    }
    .page-feature-card {
      display: grid;
      grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
      min-height: 360px;
      background: #fbfaf7;
      border: 1px solid rgba(26,26,26,0.08);
      overflow: hidden;
    }
    .page-feature-image {
      min-height: 100%;
      overflow: hidden;
      background: #e8eceb;
    }
    .page-feature-image img,
    .page-feature-image picture {
      width: 100%;
      height: 100%;
      display: block;
    }
    .page-feature-image img {
      object-fit: cover;
    }
    .page-feature-copy {
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .page-feature-copy span {
      color: var(--gold);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .page-feature-copy h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 2.8vw, 42px);
      font-weight: 400;
      line-height: 1.12;
      margin-bottom: 16px;
      color: var(--dark);
    }
    .page-feature-copy p {
      color: var(--text);
      line-height: 1.8;
      font-size: 14px;
      font-weight: 300;
      margin-bottom: 22px;
    }
    .page-feature-copy a {
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 700;
    }
    .policy-page {
      background: #f7f4ef;
      padding: 42px 24px 90px;
    }
    .policy-panel {
      max-width: 920px;
      margin: 0 auto;
      background: #fff;
      padding: clamp(34px, 5vw, 70px);
      border: 1px solid rgba(26,26,26,0.08);
      content-visibility: visible;
    }
    .policy-panel h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 400;
      margin: clamp(44px, 4vw, 58px) 0 16px;
      color: var(--dark);
    }
    .policy-panel h2:first-child {
      margin-top: 0;
    }
    .policy-panel h3 {
      color: var(--dark);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      line-height: 1.5;
      margin: 34px 0 12px;
      text-transform: uppercase;
    }
    .policy-panel p {
      color: var(--text);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 300;
      margin: 0 0 16px;
    }
    .policy-panel ul,
    .policy-panel ol {
      color: var(--text);
      font-size: 15px;
      line-height: 1.9;
      font-weight: 300;
      margin: 14px 0 28px 22px;
      padding-left: 18px;
    }
    .policy-panel p + h2,
    .policy-panel ul + h2,
    .policy-panel ol + h2 {
      margin-top: clamp(50px, 5vw, 68px);
    }
    .policy-panel p:last-child,
    .policy-panel ul:last-child,
    .policy-panel ol:last-child {
      margin-bottom: 0;
    }
    .policy-panel li + li {
      margin-top: 8px;
    }
    .policy-panel a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
    }
    .policy-panel a:hover {
      color: var(--dark);
    }
    .information-panel {
      max-width: 980px;
    }
    .documents-page {
      background: #f7f4ef;
      padding-top: 38px;
    }
    .documents-page > .breadcrumbs {
      margin: 0 auto;
    }
    .documents-section {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: clamp(30px, 4vw, 54px) 0 clamp(84px, 10vw, 128px);
    }
    .documents-intro {
      max-width: 760px;
      margin-bottom: clamp(34px, 5vw, 56px);
    }
    .documents-intro p {
      color: var(--text-light);
      font-size: 17px;
      line-height: 1.8;
      font-weight: 300;
      margin-top: 16px;
    }
    .documents-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }
    .document-card {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      align-items: start;
      gap: 24px;
      min-height: 320px;
      padding: clamp(28px, 4vw, 44px);
      background: #fff;
      border: 1px solid rgba(26,26,26,0.08);
      box-shadow: 0 22px 60px rgba(26,26,26,0.06);
    }
    .document-card-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      color: var(--gold);
      background: rgba(14,147,176,0.08);
      border: 1px solid rgba(14,147,176,0.16);
    }
    .document-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .document-card-copy {
      min-width: 0;
    }
    .document-card-meta {
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .document-card h3 {
      color: var(--dark);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 400;
      line-height: 1.05;
      margin-bottom: 18px;
    }
    .document-card p {
      color: var(--text-light);
      font-size: 15.5px;
      line-height: 1.8;
      font-weight: 300;
    }
    .document-download {
      grid-column: 1 / -1;
      align-self: end;
      width: fit-content;
      min-height: 46px;
    }
    .footer-contact-group {
      display: grid;
      gap: 7px;
      margin-bottom: 22px;
    }
    .footer-contact-group h3 {
      color: var(--gold);
      font-size: 11px;
      letter-spacing: 2.4px;
      text-transform: uppercase;
      font-weight: 700;
      margin: 0;
    }
    .footer-contact-group a,
    .footer-contact-group span {
      color: rgba(255,255,255,0.72);
      font-size: 15.5px;
      line-height: 1.75;
      text-decoration: none;
    }
    .footer-contact-group a:hover {
      color: var(--gold);
    }
    .booking-popup-open .whatsapp-float {
      display: none !important;
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
    }
    .booking-popup-open #navbar,
    .booking-popup-open .mobile-menu {
      opacity: 0;
      pointer-events: none;
      transform: translateY(-18px);
    }
    body.booking-popup-open {
      overflow: hidden;
    }
    .rooms-intro,
    .olins-intro,
    .olins-highlights,
    .tablego-section,
    .page-card-grid,
    .external-reviews-section,
    .amenities,
    .features,
    .accommodations,
    .home-video,
    .room-video-section,
    .room-proof-band,
    .contact-map-section,
    .benefits-strip,
    .gallery-strip {
      content-visibility: auto;
      contain-intrinsic-size: 1px 760px;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
      .motion-ready .motion-reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

    
    /* ── RESPONSIVE ── */
    @media (max-width: 1280px) and (min-width: 1101px) {
      nav { padding: 0 24px; }
      .nav-center .nav-item > a,
      .nav-center .nav-item > button {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 10.5px;
        letter-spacing: 1px;
      }
      nav.scrolled .nav-center .nav-item > a,
      nav.scrolled .nav-center .nav-item > button {
        padding-left: 9px;
        padding-right: 9px;
      }
      .nav-center .nav-item > a::after,
      .nav-center .nav-item > button::after {
        left: 9px;
        right: 9px;
      }
      .nav-lang-toggle {
        min-width: 64px;
        padding: 0 9px;
      }
      .nav-btn {
        padding-left: 18px;
        padding-right: 18px;
        font-size: 11px;
        letter-spacing: 1.4px;
      }
    }

    @media (max-width: 1100px) {
      .hamburger { display: flex; }
      .nav-center, .nav-right .nav-btn, .nav-right cb-book-now-button { display: none; }
      nav {
        justify-content: space-between;
        padding: 0 20px;
      }
      .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
      }
    }

    @media (max-width: 1024px) {
      nav { padding: 16px 30px; }
      nav.scrolled { padding: 10px 30px; }
      .nav-center { gap: 0; }
      .nav-center .nav-item > a,
      .nav-center .nav-item > button { padding: 18px 10px; font-size: 10px; }
      .home-video-inner {
        grid-template-columns: 1fr;
        gap: 42px;
      }
      .home-video-copy {
        max-width: 680px;
        padding-top: 0;
        padding-bottom: 0;
      }
      .accommodations, .features-inner, .amenities, footer { padding-left: 30px; padding-right: 30px; }
      .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
      .section-header .btn-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        text-align: center;
        white-space: normal;
        line-height: 1.35;
      }
      .room-card { flex: 0 0 calc(50% - 14px); }
      .rooms-arrow.prev { left: -16px; }
      .rooms-arrow.next { right: -16px; }
      .feature-card { flex: 0 0 calc(50% - 10px); }
      .features-arrow.prev { left: -16px; }
      .features-arrow.next { right: -16px; }
      .external-reviews-shell {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .external-reviews-header {
        max-width: 760px;
      }
      .external-review-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .external-review-quote-card { flex-basis: calc(50% - 11px); }
      .amenities-inner { grid-template-columns: 1fr; gap: 60px; }
      .amenities-img-accent { bottom: -24px; left: -18px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      
    }
    @media (max-width: 768px) {
      .nav-center, .nav-right .nav-btn, .nav-right cb-book-now-button { display: none; }
      .about-gallery-item { flex: 0 0 calc(33.333% - 3px); }
      .home-video {
        margin-top: 0;
        padding: 86px 22px 76px;
      }
      .home-video-inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .home-video-copy {
        padding-left: 18px;
      }
      .home-video-copy::before {
        top: 8px;
        bottom: 8px;
      }
      .home-video-copy .section-title {
        font-size: clamp(36px, 11vw, 52px);
      }
      .home-video-copy p {
        font-size: 15.5px;
        line-height: 1.75;
      }
      .home-video-link {
        width: min(100%, 290px);
      }
      .home-video-frame {
        min-height: 0;
      }
      .room-card { flex: 0 0 100%; }
      .rooms-arrow.prev { left: 8px; }
      .rooms-arrow.next { right: 8px; }
      .feature-card { flex: 0 0 100%; }
      .feature-card-img { aspect-ratio: 16/9; }
      .features-arrow.prev { left: 8px; }
      .features-arrow.next { right: 8px; }
      .gallery-strip { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; gap: 40px; }
      .amenities-list { grid-template-columns: 1fr; }
      .amenities-badge { right: 10px; }
    }

    /* ── FOOTER RESPONSIVE (shared across all pages) ── */
    @media (max-width: 600px) {
      footer { padding: 60px 24px 0; }
      .footer-top { padding-bottom: 40px; }
      .footer-logo { font-size: 34px; letter-spacing: 4px; }
      .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
        padding: 20px 0 24px;
      }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

        @media (max-width: 960px) {
      .room-row, .room-row.reverse {
        grid-template-columns: 1fr;
      }
      .room-row .room-media { order: 1; }
      .room-row .room-row-info { order: 2; }
      .room-row.reverse .room-media { order: 1; }
      .room-row.reverse .room-row-info { order: 2; }
      .room-row-info { padding: 30px 20px 10px; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .rooms-intro { padding: 70px 20px 20px; }
      .room-title { font-size: 30px; }
      .benefits-grid { grid-template-columns: 1fr; }
    }

        @media (max-width: 900px) {
      .amenity-cards { grid-template-columns: 1fr; }
      .amenity-list { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .room-container { padding: 50px 22px; }
      .room-specs-row { gap: 16px; }
    }

        @media (max-width: 860px) {
      .content-grid { grid-template-columns: 1fr; gap: 40px; }
      .page-section { padding: 70px 20px 60px; }
      .split-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 50px; }
      .split-section.reverse { direction: ltr; }
      .img-stack { padding: 0 0 40px 0 !important; }
      .img-stack .img-accent { right: 0 !important; left: auto !important; }
      .split-text { padding: 0; }
      .intro-section { padding: 70px 24px 50px; }
      .amenities-grid { grid-template-columns: repeat(3, 1fr); }
      .contact-intro { grid-template-columns: 1fr; }
      .contact-copy { padding: 60px 24px 50px; }
      .contact-visual { min-height: 360px; }
      .contact-map-section { padding: 50px 24px; }
      .contact-map-frame { height: 360px; }
      .masonry-grid { columns: 2; }
    }

        @media (max-width: 560px) {
      .amenities-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-form__row { grid-template-columns: 1fr; }
      .contact-copy .section-h2 { font-size: 38px; }
      .contact-visual { min-height: 280px; }
      .contact-map-section { padding: 40px 20px; }
      .contact-map-frame { height: 300px; }
      .masonry-grid { columns: 1; }
      .gallery-wrap { padding: 0 10px 60px; }
      .lb-prev { left: 10px; }
        .lb-next { right: 10px; }
      .lb-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
      }
      .lb-caption {
        bottom: 56px;
        width: calc(100vw - 36px);
        font-size: 22px;
      }
      .lb-counter { bottom: 30px; }

    }

    /* Mobile polish */
    @media (max-width: 768px) {
      html,
      body {
        scrollbar-width: none;
      }
      .breadcrumbs,
      .contact-shell > .breadcrumbs {
        width: calc(100% - 36px);
        margin-top: 26px;
      }
      .content-page > .breadcrumbs {
        width: calc(100% - 36px);
        margin: 26px auto;
      }
      .policy-page > .breadcrumbs,
      .room-container > .breadcrumbs {
        width: 100%;
        margin: 0 0 26px;
      }
      .breadcrumbs li {
        font-size: 10px;
        letter-spacing: 1.1px;
      }
      html::-webkit-scrollbar,
      body::-webkit-scrollbar {
        width: 0;
        height: 0;
      }
      nav,
      nav.scrolled {
        height: 76px;
        padding: 0 18px;
      }
      .nav-logo img {
        width: 86px;
        height: auto;
        max-height: 70px;
        object-fit: contain;
      }
      .hamburger {
        width: 42px;
        height: 42px;
      }
      .mobile-menu {
        padding-top: 76px;
      }
      .mobile-menu .nav-item > a,
      .mobile-menu .nav-item > button {
        padding: 16px 24px;
        font-size: 12px;
        letter-spacing: 1.4px;
      }
      .mobile-menu .nav-dropdown li a {
        padding: 13px 42px;
        font-size: 10.5px;
        letter-spacing: 1.1px;
        min-height: 44px;
        display: flex;
        align-items: center;
      }
      .mobile-menu .nav-dropdown li a:hover {
        padding-left: 48px;
      }
      .mobile-menu-btn .nav-btn {
        margin: 22px 24px 18px;
        padding: 14px 20px;
      }
      .hero {
        height: 100svh;
        min-height: 620px;
        width: 100%;
        max-width: 100%;
      }
      .motion-ready .hero .hero-slide.active {
        animation: none;
        transform: none;
      }
      .motion-ready .motion-reveal,
      .motion-ready .motion-reveal.motion-left,
      .motion-ready .motion-reveal.motion-right,
      .motion-ready .motion-reveal.motion-soft {
        opacity: 1;
        filter: none;
        transition: none;
        transform: none;
      }
      .motion-ready .motion-reveal.motion-zoom {
        opacity: 1;
        filter: none;
        transition: none;
        transform: none;
      }
      .motion-ready .motion-reveal.motion-visible {
        transform: translate3d(0, 0, 0) scale(1);
      }
      .hero-content {
        min-width: 0;
        padding: 96px 22px 72px;
      }
      .hero-content h1,
      .hero-title {
        max-width: 100%;
        font-size: clamp(38px, 12vw, 54px);
        letter-spacing: 1px;
        overflow-wrap: anywhere;
      }
      .hero-tag,
      .hero-sub,
      .hero-content .hero-occupancy {
        max-width: 320px;
        font-size: 12px;
        line-height: 1.55;
        letter-spacing: 1.6px;
      }
      .hero-tag {
        margin-bottom: 20px;
      }
      .hero-sub {
        margin-bottom: 22px;
      }
      .page-notfound .hero-sub {
        margin: 22px auto 30px;
        max-width: 360px;
      }
      .hero-divider,
      .hero-scroll,
      .hero-dots {
        display: none;
      }
      .hero-cta {
        flex-direction: column;
        width: min(100%, 280px);
      }
      .hero-cta cb-book-now-button {
        width: 100%;
      }
      .hero-cta cb-book-now-button .btn-primary.hero-book-direct,
      .hero-cta .btn-primary.hero-book-direct {
        width: 100% !important;
        padding: 13px 20px !important;
      }
      .btn-primary,
      .btn-outline {
        width: 100%;
        padding: 13px 20px;
        text-align: center;
      }
      .about {
        padding: 80px 0 56px;
      }
      .about-top,
      .inspiration-content,
      .section-header,
      .features-header {
        padding-left: 22px;
        padding-right: 22px;
      }
      .section-title,
      .inspiration-content .section-title,
      .section-h2,
      .rooms-intro h2,
      .content-left h2,
      .contact-copy .section-h2 {
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1.14;
      }
      .about-gallery-item {
        flex: 0 0 calc(50% - 3px);
      }
      .accommodations,
      .features-inner,
      .amenities {
        padding: 72px 22px;
      }
      .rooms-track-wrap,
      .features-track-wrap {
        overflow: hidden;
      }
      .rooms-arrow,
      .features-arrow {
        width: 40px;
        height: 40px;
      }
      .feature-card-info,
      .feature-card:hover .feature-card-info {
        transform: translateY(0);
      }
      .feature-card-info {
        padding: 22px 20px;
      }
      .feature-card-info h3 {
        font-size: 30px;
      }
      .feature-card-info p,
      .feature-link {
        opacity: 1;
      }
      .feature-card-img {
        aspect-ratio: 4/5;
      }
      .room-specs,
      .room-specs-row {
        gap: 10px;
      }
      .room-spec {
        font-size: 12.5px;
      }
      #room-photos,
      #room-video,
      #room-details,
      #room-amenities,
      #room-faq {
        scroll-margin-top: 84px;
      }
      .room-media {
        aspect-ratio: 16/11;
      }
      .gallery-filters {
        padding: 34px 14px 28px;
        gap: 7px;
      }
      .filter-btn {
        padding: 9px 14px;
        font-size: 10.5px;
        letter-spacing: 1px;
      }
      .page-gallery .filter-btn {
        min-height: 44px;
      }
      .contact-intro {
        min-height: 0;
      }
      .external-reviews-section,
      .faq-section,
      .notfound-section,
      .similar-rooms {
        padding: 72px 22px;
      }
      .external-review-summary-grid,
      .documents-grid,
      .room-detail-grid,
      .similar-rooms-grid,
      .notfound-grid {
        grid-template-columns: 1fr;
      }
      .documents-section {
        width: calc(100% - 44px);
        padding-top: 42px;
      }
      .document-card {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 20px;
      }
      .document-download {
        width: 100%;
        justify-content: center;
      }
      .external-reviews-header {
        margin-bottom: 28px;
      }
      .external-reviews-header .section-title {
        font-size: clamp(42px, 12vw, 56px);
      }
      .external-reviews-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 320px);
      }
      .external-reviews-actions .btn-gold,
      .external-reviews-secondary-cta {
        justify-content: center;
        width: 100%;
      }
      .external-review-summary-card {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 0;
        padding: 28px 22px;
        gap: 16px;
      }
      .external-review-rating {
        grid-column: 1 / -1;
        justify-items: start;
        min-width: 0;
        text-align: left;
      }
      .external-review-rating strong {
        font-size: 46px;
      }
      .external-review-platform {
        font-size: 27px;
      }
      .external-review-slider-head {
        align-items: flex-start;
        flex-direction: column;
      }
      .external-review-slider-head h3 {
        font-size: 28px;
      }
      .external-review-controls {
        width: 100%;
        justify-content: flex-end;
      }
      .external-review-quote-card {
        flex-basis: 100%;
        min-height: 0;
        padding: 28px 22px;
      }
      .external-review-quote-card blockquote {
        font-size: 24px;
      }
      .external-review-cta {
        min-height: 40px;
        align-items: center;
      }
      .external-review-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }
      .room-video-section {
        grid-template-columns: 1fr;
        margin-top: 52px;
        margin-bottom: 64px;
        padding: 62px clamp(24px, 6vw, 42px) 68px;
        gap: 36px;
      }
      .room-video-section::before {
        inset: 18px clamp(14px, 4vw, 24px);
      }
      .room-video-copy {
        max-width: none;
        margin-left: 0;
      }
      .room-video-copy .section-label {
        margin-bottom: 14px;
      }
      .room-video-copy .section-title {
        margin-bottom: 20px;
      }
      .room-video-copy p {
        line-height: 1.75;
        margin-bottom: 28px;
      }
      .room-video-frame {
        max-width: none;
      }
      .room-video-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
      }
      .room-video-actions .btn-gold,
      .room-video-text-link {
        width: 100%;
        text-align: center;
      }
      .room-video-actions .room-video-text-link {
        align-self: center;
        width: auto;
        max-width: 100%;
        padding-left: 2px;
        padding-right: 2px;
      }
      .room-video-actions cb-book-now-button .btn-gold.room-video-book-direct,
      .room-video-actions .btn-gold.room-video-book-direct {
        width: 100% !important;
      }
      .room-video-actions cb-book-now-button {
        width: 100%;
      }
      .faq-item summary {
        align-items: flex-start;
        min-height: 0;
        padding: 18px 20px;
        font-size: 15px;
        line-height: 1.5;
      }
      .faq-item p {
        padding: 0 20px 22px;
      }
      .room-detail-grid {
        margin-bottom: 50px;
      }
      .room-proof-band {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 52px;
      }
      .room-proof-card,
      .room-proof-card--review {
        grid-column: auto;
        min-height: 0;
      }
      .room-proof-card {
        padding: 26px 22px;
      }
      .room-proof-card--review h2 {
        font-size: 32px;
      }
      .mobile-lang-row {
        padding: 16px 24px 4px;
      }
      .mobile-lang-row .nav-lang-toggle,
      .mobile-menu-btn .nav-btn {
        display: inline-flex;
      }
      .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 0 14px;
      }
      .page-contact .whatsapp-float {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .hero {
        min-height: 600px;
      }
      .hero-content h1,
      .hero-title {
        font-size: clamp(34px, 13vw, 48px);
      }
      .about-gallery-item {
        flex-basis: calc(72% - 3px);
      }
      .room-video-section {
        padding: 54px 24px 58px;
        gap: 34px;
      }
      .room-video-section::before {
        inset: 16px 14px;
      }
      .room-video-poster,
      .room-video-player {
        aspect-ratio: 4 / 5;
      }
      .room-video-note {
        left: 20px;
        right: 20px;
        bottom: 22px;
      }
      .room-video-play {
        width: 70px;
        height: 70px;
      }
      .room-video-play svg {
        width: 28px;
        height: 28px;
      }
      .gallery-strip {
        grid-template-columns: 1fr;
      }
      .external-reviews-section + .gallery-strip {
        margin-top: 34px;
      }
      .section-header .btn-gold {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        letter-spacing: 1.8px;
      }
      .room-row-info {
        padding: 26px 18px 8px;
      }
      .rooms-list {
        padding-left: 18px;
        padding-right: 18px;
      }
      .room-row,
      .room-row.reverse {
        overflow: hidden;
      }
      .room-title {
        font-size: 28px;
      }
      .room-specs,
      .room-specs-row {
        justify-content: center;
      }
      .amenities-grid {
        gap: 10px;
      }
      .amenity-card-item {
        padding: 22px 8px;
      }
      .content-left h2,
      .contact-copy .section-h2 {
        font-size: 34px;
      }
      .info-card {
        padding: 26px 22px;
      }
      .whatsapp-float span {
        display: none;
      }
      .whatsapp-float {
        width: 50px;
        justify-content: center;
        padding: 0;
      }
    }

    @media (max-width: 900px) {
      .olins-intro,
      .page-feature-card {
        grid-template-columns: 1fr;
      }
      .reservation-shell {
        grid-template-columns: 1fr;
      }
      .reservation-copy {
        min-height: 0;
      }
      .reservation-widget-head {
        align-items: flex-start;
        flex-direction: column;
      }
      .olins-intro {
        padding: 42px 24px 54px;
      }
      .olins-image-pair {
        grid-template-columns: 1fr;
      }
      .olins-image-pair picture:first-child {
        margin-bottom: 0;
      }
      .olins-highlight-grid {
        grid-template-columns: 1fr;
      }
      .olins-highlights {
        padding: 68px 24px 76px;
      }
      .page-card-grid {
        grid-template-columns: 1fr;
        padding: 20px 24px 70px;
      }
      .page-feature-image {
        min-height: 260px;
      }
      .tablego-section {
        padding: 64px 20px 78px;
      }
      .tablego-frame iframe {
        min-height: 680px;
      }
      .policy-page {
        padding: 34px 18px 64px;
      }
    }
