
    :root {
      --gold: #C9A84C;
      --gold-lt: #E8D08A;
      --gold-dk: #9A7A2E;
      --dark: #160905;
      --dark2: #1E0D08;
      --dark3: #2A1208;
      --sidebar: 280px;
      /* Brand Pattern Colors */
      --pat-gold: #FAC313;
      --pat-red-dk: #9D0503;
      --pat-navy: #05051F;
      --pat-red: #CB0002;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--dark);
      color: #fff;
      padding-left: 0;
    }

    /* ── PRELOADER ── */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity .7s ease;
    }

    #preloader .pl-logo {
      width: 220px;
      animation: pulse 2s ease-in-out infinite;
    }

    #preloader .pl-logo img {
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
    }

    #preloader .pl-sub {
      font-size: .6rem;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-top: 10px;
    }

    #preloader .pl-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2px;
      background: var(--gold);
      animation: barGrow 2s ease forwards;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

    @keyframes barGrow {
      from {
        width: 0
      }

      to {
        width: 100%
      }
    }

    /* ── BRAND PATTERN LINE ── */
    .moipa-pattern-line {
      height: 5px;
      width: 100%;
      background: repeating-linear-gradient(to right, 
        var(--pat-gold) 0px, var(--pat-gold) 10px, 
        var(--pat-red-dk) 10px, var(--pat-red-dk) 20px, 
        var(--pat-navy) 20px, var(--pat-navy) 30px, 
        var(--pat-red) 30px, var(--pat-red) 40px
      );
      border: none;
      position: relative;
      z-index: 100;
    }

    /* ── TOP NAV ── */
    .mn {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 50px;
      padding: 30px 52px;
      z-index: 10000;
      transition: all .4s ease;
      background: transparent;
      border-bottom: 1px solid rgba(201, 168, 76, .15);
    }

    .mn.scrolled {
      position: fixed;
      background: rgba(12, 5, 3, .95);
      backdrop-filter: blur(10px);
      padding: 16px 52px;
      top: 0;
      transform: translateY(0);
    }

    .mn-logo {
      position: absolute;
      top: 30px;
      left: 52px;
      background: rgba(12, 5, 2, .85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 168, 76, .15);
      padding: 24px 30px;
      border-radius: 2px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
      transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mn.scrolled .mn-logo {
      top: 0;
      padding: 12px 24px;
      background: transparent;
      border: none;
      box-shadow: none;
      backdrop-filter: none;
    }

    .mn-logo img {
      height: 85px;
      filter: none;
      transition: all .4s ease;
      display: block;
    }

    .mn.scrolled .mn-logo img {
      height: 40px;
    }

    .mn-logo:hover {
      border-color: rgba(201, 168, 76, .5);
      box-shadow: 0 25px 60px rgba(0, 0, 0, .8);
      transform: translateY(-2px);
    }

    .mn-nav {
      display: flex;
      align-items: center;
    }

    .mn-links {
      list-style: none;
      display: flex;
      gap: 36px;
      margin: 0;
      padding: 0;
    }

    .mn-links li {
      margin: 0;
    }

    .mn-links a {
      display: inline-block;
      padding: 8px 0;
      font-size: .65rem;
      font-weight: 500;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
      text-decoration: none;
      transition: color .3s;
      position: relative;
    }

    .mn-links a::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      transform: scaleX(0);
      height: 1px;
      background: var(--gold);
      transition: transform .3s;
      transform-origin: right;
    }

    .mn-links a:hover {
      color: var(--gold);
    }

    .mn-links a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .mn-links a.active {
      color: var(--gold);
    }

    .mn-actions {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .mn-book {
      display: inline-block;
      padding: 12px 30px;
      outline: none;
      border: 1px solid var(--gold);
      cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: #000;
      background: var(--gold);
      text-decoration: none;
      transition: all .4s ease;
      border-radius: 2px;
    }

    .mn-book:hover {
      background: transparent;
      color: var(--gold);
      box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    }

    .mn-toggle {
      display: none;
      flex-direction: column;
      gap: 7px;
      cursor: pointer;
      padding: 6px;
    }

    .mn-toggle span {
      display: block;
      width: 30px;
      height: 1px;
      background: #fff;
      transition: all .3s;
    }

    /* ── MOBILE NAV OVERLAY ── */
    .mn-overlay {
      display: flex;
      visibility: hidden;
      opacity: 0;
      position: fixed;
      inset: 0;
      background: rgba(10, 5, 3, 0.85);
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
      z-index: 9999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .mn-overlay.open {
      visibility: visible;
      opacity: 1;
    }

    .mn-overlay a {
      font-size: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      letter-spacing: .15em;
      color: rgba(255, 255, 255, .7);
      text-decoration: none;
      transition: all .5s cubic-bezier(0.25, 1, 0.5, 1);
      opacity: 0;
      transform: translateY(30px);
    }

    .mn-overlay.open a {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered animation for nav items */
    .mn-overlay a:nth-child(1) { transition-delay: 0.1s; }
    .mn-overlay a:nth-child(2) { transition-delay: 0.15s; }
    .mn-overlay a:nth-child(3) { transition-delay: 0.2s; }
    .mn-overlay a:nth-child(4) { transition-delay: 0.25s; }
    .mn-overlay a:nth-child(5) { transition-delay: 0.3s; }
    .mn-overlay a:nth-child(6) { transition-delay: 0.35s; }
    .mn-overlay .mob-book { transition-delay: 0.4s; }

    .mn-overlay a:hover {
      color: var(--gold);
      transform: scale(1.05) translateY(-2px);
    }

    .mn-overlay .mob-book {
      font-size: .75rem;
      font-family: 'Jost', sans-serif;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201, 168, 76, .4);
      padding: 16px 45px;
      margin-top: 20px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 2.6s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
      animation: kb 12s ease-in-out forwards;
    }

    @keyframes kb {
      from {
        transform: scale(1.05)
      }

      to {
        transform: scale(1)
      }
    }

    /* Directional gradient — dark left, photo breathes right */
    .hero-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(5, 2, 1, .92) 0%, rgba(5, 2, 1, .65) 45%, rgba(5, 2, 1, .1) 100%),
        linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 45%);
    }

    /* Main content — bottom-left anchored */
    .hero-content {
      position: relative;
      z-index: 5;
      padding: 0 52px 90px;
      max-width: 720px;
    }

    .hero-pretitle {
      font-size: .6rem;
      letter-spacing: .55em;
      text-transform: uppercase;
      color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      margin-bottom: 22px;
      opacity: 0;
      animation: fadeUp .9s ease forwards .6s;
    }

    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 8.5rem);
      font-weight: 300;
      line-height: 1.0;
      color: #fff;
      letter-spacing: -.01em;
      margin-bottom: 0;
      opacity: 0;
      animation: fadeUp 1.3s cubic-bezier(.16, 1, .3, 1) forwards .9s;
    }

    .hero-h1 em {
      font-style: italic;
      color: rgba(255, 255, 255, .7);
      display: block;
      font-size: .85em;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 20px;
      margin: 32px 0;
      opacity: 0;
      animation: fadeUp .9s ease forwards 1.3s;
    }

    .hero-divider::before {
      content: '';
      flex: 0 0 40px;
      height: 1px;
      background: var(--gold);
    }

    .hero-divider span {
      font-size: .6rem;
      letter-spacing: .45em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
    }

    .hero-cta {
      opacity: 0;
      animation: fadeUp .9s ease forwards 1.6s;
    }

    .hero-cta a {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      font-size: .68rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      font-family: 'Jost', sans-serif;
      font-weight: 400;
      transition: all .4s;
    }

    .hero-cta a::after {
      content: '';
      width: 36px;
      height: 1px;
      background: var(--gold);
      display: block;
      transition: width .4s;
    }

    .hero-cta a:hover {
      color: var(--gold);
    }

    .hero-cta a:hover::after {
      width: 56px;
    }

    /* Bottom bar */
    .hero-bottombar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      padding: 0 52px 28px;
      gap: 20px;
    }

    .hero-coords {
      font-size: .55rem;
      letter-spacing: .35em;
      color: rgba(255, 255, 255, .25);
      font-family: 'Jost', sans-serif;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards 1.8s;
    }

    .hero-bottombar-line {
      flex: 1;
      height: 1px;
      background: rgba(201, 168, 76, .18);
    }

    .hero-slide-counter {
      font-size: .55rem;
      letter-spacing: .35em;
      color: rgba(255, 255, 255, .35);
      font-family: 'Jost', sans-serif;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards 1.8s;
    }

    .hero-slide-counter strong {
      color: rgba(201, 168, 76, .8);
    }

    /* Hidden dots for JS */
    .hero-dots {
      display: none;
    }

    .hero-dot {
      display: none;
    }

    /* Scroll line */
    .hero-scroll {
      position: absolute;
      bottom: 0;
      right: 52px;
      z-index: 5;
      width: 1px;
      height: 52px;
      background: linear-gradient(to bottom, rgba(201, 168, 76, .4), transparent);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    .hero-pretitle,
    .hero-h1,
    .hero-divider,
    .hero-cta {
      transform: translateY(20px);
    }

    @media (max-width: 991px) {
      .hero-content {
        padding: 0 28px 80px;
        max-width: 100%;
      }

      .hero-topbar {
        padding: 24px 28px;
      }

      .hero-h1 {
        font-size: clamp(3rem, 10vw, 5rem);
      }

      .hero-bottombar {
        padding: 0 28px 20px;
      }
    }

    @media (max-width: 576px) {
      .hero-h1 {
        font-size: 2.8rem;
      }

      .hero-topbar-logo img {
        height: 38px;
      }
    }

    /* ── DROPDOWN RESERVATION MENU ── */
    .nav-dropdown-wrapper {
      position: relative;
    }

    .nav-booking-dropdown {
      position: absolute;
      top: calc(100% + 24px);
      right: 0;
      width: 720px;
      background: rgba(10, 4, 2, .98);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      border: 1px solid rgba(201, 168, 76, .2);
      padding: 44px 50px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all .4s ease;
      cursor: default;
      pointer-events: none;
      z-index: 99999;
      text-align: left;
      border-radius: 2px;
    }

    .nav-booking-dropdown.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .bk-header {
      text-align: left;
      margin-bottom: 30px;
      border-bottom: 1px solid rgba(201, 168, 76, .15);
      padding-bottom: 20px;
    }

    .bk-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      color: #fff;
      margin-bottom: 6px;
      line-height: 1;
      text-transform: none;
    }

    .bk-header p {
      font-size: .55rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0;
    }

    .bk-section-title {
      font-size: .55rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .3);
      margin-bottom: 10px;
    }

    .mt-4 {
      margin-top: 24px;
    }

    .booking-grid-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 16px;
    }

    .booking-grid-row.cols-2 {
      grid-template-columns: 1fr 1fr;
    }

    .booking-grid-row.cols-req {
      grid-template-columns: 2fr 1fr;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 0;
    }

    .bk-field {
      background: rgba(255, 255, 255, .02);
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      transition: border-color .3s;
    }

    .bk-field:focus-within {
      border-bottom-color: var(--gold);
    }

    .bk-field label {
      display: block;
      font-size: .45rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin: 10px 12px 4px;
    }

    .bk-field input,
    .bk-field select {
      background: transparent;
      border: none;
      outline: none;
      padding: 0 12px 10px;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: .8rem;
      width: 100%;
    }

    .bk-field select option {
      background: #1a0a05;
    }

    .bk-field input::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .bk-submit {
      width: 100%;
      height: 48px;
      background: var(--gold);
      border: none;
      cursor: pointer;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 600;
      font-family: 'Jost', sans-serif;
      color: #000;
      transition: background .3s;
      border-radius: 2px;
    }

    .bk-submit:hover {
      background: var(--gold-lt);
    }

    @media (max-width: 991px) {
      .nav-booking-dropdown {
        display: none !important;
      }
    }

    /* ── STATS ── */
    .stats {
      position: relative;
      background: transparent;
      margin-top: -65px;
      margin-bottom: 80px;
      z-index: 20;
    }

    .stats-inner {
      background: rgba(12, 5, 2, .85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 168, 76, .15);
      border-radius: 4px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .5);
      padding: 18px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat {
      padding: 16px 20px;
      text-align: center;
      border-right: 1px dashed rgba(201, 168, 76, .15);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: #fff;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 48px;
    }

    .stat-l {
      font-size: .55rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 14px;
    }

    /* ── SECTION LABELS ── */
    .eyebrow {
      font-size: .6rem;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 14px;
    }

    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: #fff;
      line-height: 1.2;
    }

    .sec-title em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .gold-rule {
      width: 50px;
      height: 1px;
      background: var(--gold);
      margin: 20px 0;
    }

    .gold-rule.center {
      margin: 20px auto;
    }

    /* ── EDITORIAL CANVAS ── */
    /* ── EDITORIAL SPLIT (CINEMATIC) ── */
    .editorial {
      background: #0a0705;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      min-height: 850px;
    }

    .ed-split-visual {
      position: relative;
      overflow: hidden;
    }

    .ed-split-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 2.5s ease;
    }

    .editorial:hover .ed-split-visual img {
      transform: scale(1.08);
    }
    
    .ed-split-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 10% 12%;
      background: #0a0705;
      position: relative;
      z-index: 2;
    }

    .ed-split-content .eyebrow {
      font-size: .8rem;
      letter-spacing: .4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 25px;
      display: block;
    }

    .ed-split-content .sec-title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      line-height: .95;
      margin-bottom: 40px;
      letter-spacing: -0.02em;
    }

    .ed-split-content .sec-title em {
      display: block;
      margin-top: 5px;
      color: rgba(255, 255, 255, .4);
    }

    .ed-story {
      font-size: 1.05rem;
      line-height: 1.85;
      color: rgba(255, 255, 255, .55);
      margin-bottom: 60px;
      max-width: 500px;
    }

    /* Pillars Grid */
    .ed-pillars {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 40px;
      margin-bottom: 60px;
    }

    .pillar-item {
      position: relative;
    }

    .pillar-item h4 {
      font-size: .9rem;
      text-transform: uppercase;
      letter-spacing: .2em;
      color: #fff;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .pillar-item p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .4);
      line-height: 1.7;
    }

    .pillar-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: -20px;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    /* Premium Story Button */
    .btn-story {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      padding: 18px 45px;
      background: transparent;
      border: 1px solid rgba(201, 168, 76, .3);
      color: #fff;
      font-size: .7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .35em;
      transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      margin-top: 10px;
    }

    .btn-story i {
      font-size: .8rem;
      transition: transform .5s ease;
    }

    .btn-story:hover {
      background: var(--gold);
      color: #0a0705;
      border-color: var(--gold);
      box-shadow: 0 15px 30px rgba(201, 168, 76, .2);
      transform: translateY(-3px);
    }

    .btn-story:hover i {
      transform: translateX(8px);
    }

    .btn-story::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
      transition: left .5s ease;
    }

    .btn-story:hover::before {
      left: 100%;
    }

    /* ── EXPERIENCE CARDS (CINEMATIC) ── */
    .experience {
      padding: 140px 0;
      background: #0a0705;
    }

    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 80px;
    }

    .feat-card {
      position: relative;
      height: 420px;
      overflow: hidden;
      border-radius: 4px;
      background: #111;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border: 1px solid rgba(201, 168, 76, .1);
      transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Architectural Internal Frame */
    .feat-card::after {
      content: '';
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(201, 168, 76, 0.1);
      z-index: 4;
      pointer-events: none;
      transition: all .6s ease;
    }

    .feat-card:hover::after {
      border-color: rgba(201, 168, 76, 0.5);
      box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.1);
    }

    /* ── REPEATING HIGH-DENSITY SQUARE MONTAGE (10 IMAGES) ── */
    .gallery-sec {
      padding: 120px 0;
      background: #080503;
    }

    .gallery-container {
      display: flex;
      flex-direction: column;
      gap: 10px; /* Minimalist gap between rows */
    }

    .gallery-row-unit {
      display: flex;
      gap: 10px; /* Minimalist gap between columns */
    }

    .grid-main-column, .grid-side-column {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .grid-side-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .grid-item {
      position: relative;
      overflow: hidden;
      background: #000;
      border-radius: 4px;
      aspect-ratio: 1 / 1;
      border: 1px solid rgba(201, 168, 76, 0.1);
      transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .grid-item:hover {
      border-color: rgba(201, 168, 76, 0.4);
      transform: scale(0.98); /* Subtle inward lift for high-density look */
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.7);
      transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    }

    .grid-item:hover img {
      filter: brightness(1);
      transform: scale(1.1);
    }

    /* Refined Architectural Inset (Tight 10px Gap) */
    .grid-item::after {
      content: '';
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(201, 168, 76, 0.1);
      z-index: 3;
      pointer-events: none;
      transition: all 0.6s ease;
    }

    .grid-item:hover::after {
      inset: 8px;
      border-color: rgba(201, 168, 76, 0.5);
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    }

    /* HUD Metadata Labels */
    .grid-label {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 4;
      font-size: 0.5rem;
      color: var(--gold);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.5s ease;
    }

    .grid-item:hover .grid-label {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 991px) {
      .gallery-row-unit {
        flex-direction: column;
      }
      .gallery-container {
        gap: 10px;
      }
      .grid-item::after {
        inset: 8px; /* Tighter frame on smaller screens */
      }
    }

    @media (max-width: 576px) {
      .grid-side-row {
        gap: 10px; /* Keep the 2x2 structure on mobile */
      }
      .gallery-sec {
        padding: 80px 0;
      }
      /* Ensure labels are visible on mobile since hover is unavailable */
      .grid-label {
        opacity: 1;
        transform: translateY(0);
        bottom: 15px;
        left: 15px;
        font-size: 0.45rem;
      }
      .grid-item::after {
        inset: 6px;
      }
    }

    .feat-card-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

    .feat-card-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
      filter: brightness(0.6) contrast(1.1);
    }

    .feat-card:hover .feat-card-bg img {
      transform: scale(1.1);
      filter: brightness(0.7) contrast(1.15);
    }

    .feat-card-content {
      position: relative;
      z-index: 2;
      padding: 40px;
      background: linear-gradient(to top, rgba(10, 7, 5, 0.95) 0%, rgba(10, 7, 5, 0.7) 40%, transparent 100%);
      transition: all .5s ease;
    }

    .feat-icon {
      font-size: 1.5rem;
      color: var(--gold);
      margin-bottom: 25px;
      display: block;
      transition: transform .5s ease;
    }

    .feat-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 500;
      color: #fff;
      margin-bottom: 15px;
      letter-spacing: .02em;
    }

    .feat-desc {
      font-size: .85rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 0;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      transition: all .6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feat-card:hover .feat-desc {
      max-height: 150px;
      opacity: 1;
      transform: translateY(0);
      margin-bottom: 20px;
    }

    .feat-card:hover .feat-icon {
      transform: translateY(-5px);
    }

    .feat-card:hover {
      border-color: var(--gold);
      box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
      transform: translateY(-10px);
    }

    /* Glass tag for each card */
    .feat-tag {
      position: absolute;
      top: 30px;
      right: 30px;
      z-index: 3;
      padding: 6px 14px;
      background: rgba(201, 168, 76, 0.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 20px;
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold-lt);
      font-weight: 600;
    }

    /* ── ROOMS & SUITES (CINEMATIC SPLIT-FRAME) ── */
    .rooms {
      padding: 160px 0;
      background: #080503;
      overflow: hidden;
    }

    .rooms-hd {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 100px;
    }

    .room-module {
      display: flex;
      align-items: stretch;
      min-height: 600px;
      margin-bottom: 120px;
      gap: 60px;
    }

    .room-module:last-child {
      margin-bottom: 0;
    }

    .room-module.alt {
      flex-direction: row-reverse;
    }

    .room-visual {
      flex: 1.4;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      background: #111;
    }

    .room-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.5s ease;
      filter: brightness(0.9);
    }

    /* Architectural Frame Inset */
    .room-visual::after {
      content: '';
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(201, 168, 76, 0.2);
      pointer-events: none;
      z-index: 2;
      transition: all .6s ease;
    }

    .room-module:hover .room-visual img {
      transform: scale(1.05);
    }

    .room-module:hover .room-visual::after {
      inset: 15px;
      border-color: rgba(201, 168, 76, 0.5);
      box-shadow: inset 0 0 30px rgba(201, 168, 76, 0.1);
    }

    .room-text-pillar {
      flex: 0.6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 40px;
    }

    .room-type-label {
      font-size: .6rem;
      text-transform: uppercase;
      letter-spacing: .4em;
      color: var(--gold);
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .room-type-label::after {
      content: '';
      height: 1px;
      width: 40px;
      background: rgba(201, 168, 76, 0.3);
    }

    .room-pillar-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 4vw, 3.8rem);
      font-style: italic;
      color: #fff;
      line-height: 1;
      margin-bottom: 35px;
    }

    .room-pillar-desc {
      font-size: .95rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 45px;
      max-width: 400px;
    }

    .room-pillar-cta {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: .3em;
      color: #fff;
      text-decoration: none;
      transition: all .4s ease;
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.3);
      width: fit-content;
    }

    .room-pillar-cta i {
      transition: transform .4s ease;
      color: var(--gold);
    }

    .room-pillar-cta:hover {
      color: var(--gold-lt);
      border-bottom-color: var(--gold);
    }

    .room-pillar-cta:hover i {
      transform: translateX(10px);
    }

    @media (max-width: 992px) {
      .room-module, .room-module.alt {
        flex-direction: column;
        gap: 40px;
      }
      .room-visual {
        height: 400px;
      }
      .room-text-pillar {
        padding: 0;
      }
    }

    /* ── BRAND BILLBOARD (CINEMATIC MANIFESTO) ── */
    .brand-billboard {
      position: relative;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #080503;
      overflow: hidden;
      text-align: center;
    }

    .billboard-bg {
      position: absolute;
      inset: 0;
      background-image: url('img/moipa_hero_1.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      filter: brightness(0.4) saturate(0.8);
      z-index: 1;
    }

    .billboard-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, transparent 0%, #080503 90%);
      z-index: 2;
    }

    /* Vertical Gold Thread */
    .brand-billboard::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 1px;
      height: 100%;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      z-index: 3;
      opacity: 0.4;
    }

    .billboard-content {
      position: relative;
      z-index: 4;
      max-width: 1100px;
      padding: 0 40px;
    }

    .billboard-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4.4rem);
      font-style: italic;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 50px;
      text-shadow: 0 10px 40px rgba(0,0,0,0.8);
      position: relative;
    }

    .billboard-cite {
      font-size: .65rem;
      letter-spacing: .5em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-top: 20px;
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .brand-billboard {
        height: 60vh;
      }
      .billboard-bg {
        background-attachment: scroll; /* Better performance on mobile */
      }
    }

    /* ── GALLERY ── */
    .gallery-sec {
      padding: 100px 0 0;
      background: var(--dark2);
    }

    .gal-hd {
      padding: 0 0 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 300px 240px;
      gap: 3px;
    }

    .gal-item {
      overflow: hidden;
      position: relative;
      background: #111;
    }

    .gal-item:first-child {
      grid-row: 1 / 3;
    }

    .gal-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s ease;
    }

    .gal-item:hover img {
      transform: scale(1.06);
    }

    .gal-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .25);
      transition: background .4s;
    }

    .gal-item:hover::after {
      background: rgba(0, 0, 0, .1);
    }

    .gallery-foot {
      padding: 32px 0;
      text-align: center;
      background: var(--dark2);
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      padding: 120px 0;
      background: var(--dark);
    }

    .test-wrap {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .test-quote-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: .2;
      line-height: 1;
      margin-bottom: 24px;
    }

    .test-stars {
      color: var(--gold);
      letter-spacing: 4px;
      font-size: .8rem;
      margin-bottom: 28px;
    }

    .test-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.15rem, 2.2vw, 1.7rem);
      font-weight: 300;
      font-style: italic;
      color: rgba(255, 255, 255, .85);
      line-height: 1.65;
      margin-bottom: 40px;
    }

    .test-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .test-author img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      object-fit: cover;
    }

    .test-author h4 {
      font-size: .85rem;
      letter-spacing: .08em;
      color: #fff;
      margin-bottom: 3px;
      text-align: left;
    }

    .test-author p {
      font-size: .68rem;
      color: var(--gold);
      letter-spacing: .08em;
      text-align: left;
      margin: 0;
    }

    .test-nav {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 44px;
    }

    .test-btn {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(201, 168, 76, .35);
      background: transparent;
      color: var(--gold);
      font-size: .9rem;
      cursor: pointer;
      transition: all .3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .test-btn:hover {
      background: var(--gold);
      color: #000;
    }

    /* ── NEWSLETTER ── */
    .newsletter {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--dark2), var(--dark3), var(--dark2));
      border-top: 1px solid rgba(201, 168, 76, .15);
      border-bottom: 1px solid rgba(201, 168, 76, .15);
    }

    .nl-inner {
      max-width: 580px;
      margin: 0 auto;
      text-align: center;
    }

    .nl-inner p {
      font-size: .88rem;
      color: rgba(255, 255, 255, .4);
      line-height: 1.8;
      margin-top: 16px;
      margin-bottom: 36px;
    }

    .nl-form {
      display: flex;
    }

    .nl-input {
      flex: 1;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(201, 168, 76, .2);
      border-right: none;
      padding: 14px 18px;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: .88rem;
      outline: none;
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, .25);
    }

    .nl-btn {
      background: var(--gold);
      border: none;
      padding: 0 28px;
      font-family: 'Jost', sans-serif;
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 700;
      color: #000;
      cursor: pointer;
      transition: background .3s;
    }

    .nl-btn:hover {
      background: var(--gold-lt);
    }

    /* ── FOOTER ── */
    .footer {
      background: #080302;
      padding: 80px 0 0;
      border-top: 1px solid rgba(201, 168, 76, .12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
      gap: 50px;
      padding-bottom: 60px;
    }

    .footer-brand h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 300;
      letter-spacing: .25em;
      color: #fff;
    }

    .footer-brand h2 span {
      color: var(--gold);
    }

    .footer-brand p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .35);
      line-height: 1.9;
      margin-top: 14px;
    }

    .f-social {
      display: flex;
      gap: 9px;
      margin-top: 22px;
    }

    .f-social a {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(201, 168, 76, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      font-size: .78rem;
      transition: all .3s;
    }

    .f-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col h4 {
      font-size: .58rem;
      letter-spacing: .45em;
      text-transform: uppercase;
      color: var(--gold);
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(201, 168, 76, .15);
      margin-bottom: 22px;
    }

    .f-links {
      list-style: none;
    }

    .f-links li {
      margin-bottom: 10px;
    }

    .f-links a {
      color: rgba(255, 255, 255, .38);
      font-size: .82rem;
      text-decoration: none;
      transition: color .3s;
    }

    .f-links a:hover {
      color: var(--gold);
    }

    .f-contact-item {
      display: flex;
      gap: 12px;
      margin-bottom: 14px;
      align-items: flex-start;
    }

    .f-contact-item i {
      color: var(--gold);
      font-size: .8rem;
      margin-top: 2px;
    }

    .f-contact-item span {
      color: rgba(255, 255, 255, .38);
      font-size: .8rem;
      line-height: 1.65;
    }

    .f-contact-item a {
      color: inherit;
      text-decoration: none;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .05);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, .25);
      font-size: .75rem;
      margin: 0;
    }

    .footer-bottom a {
      color: var(--gold);
      text-decoration: none;
    }

    /* ── SCROLL TOP ── */
    #scrollTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 500;
      width: 42px;
      height: 42px;
      background: var(--gold);
      border: none;
      color: #000;
      font-size: .9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(16px);
      transition: all .4s;
    }

    #scrollTop.show {
      opacity: 1;
      transform: translateY(0);
    }

    #scrollTop:hover {
      background: var(--gold-lt);
    }

    /* ── CONTAINER ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .container-fluid {
      padding: 0;
    }

    @media (max-width: 1440px) {
      .mn {
        padding: 24px 40px;
        gap: 30px;
      }

      .mn.scrolled {
        padding: 14px 40px;
      }

      .mn-logo {
        left: 40px;
        top: 24px;
        padding: 20px 24px;
      }

      .mn-logo img {
        height: 70px;
      }

      .mn-links {
        gap: 28px;
      }

      .hero-content,
      .hero-bottombar {
        padding-left: 40px;
        padding-right: 40px;
      }

      .hero-scroll {
        right: 40px;
      }

      .hero-h1 {
        font-size: clamp(3.2rem, 6.5vw, 6.8rem);
        line-height: 1.05;
      }
    }

    @media (max-width: 1200px) {
      .mn {
        padding: 20px 28px;
        gap: 20px;
      }

      .mn.scrolled {
        padding: 12px 28px;
      }

      .mn-logo {
        left: 28px;
        top: 20px;
        padding: 16px 20px;
      }

      .mn-logo img {
        height: 55px;
      }

      .mn-links {
        gap: 20px;
      }

      .mn-links a {
        font-size: .6rem;
      }

      .hero-h1 {
        font-size: clamp(3rem, 7vw, 5.5rem);
      }
    }

    @media (max-width: 991px) {
      body {
        padding-left: 0;
      }

      .mn {
        width: 100%;
        height: 75px;
        flex-direction: row;
        padding: 0 24px;
        bottom: auto;
        background: rgba(12, 5, 3, .95);
        position: fixed;
        justify-content: space-between;
      }

      .mn.scrolled {
        padding: 0 24px;
      }

      .mn-logo {
        position: relative;
        top: 0;
        left: 0;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        transform: none;
      }

      .mn-logo img {
        height: 40px !important;
        display: inline-block;
      }

      .mn-logo:hover {
        transform: none;
        box-shadow: none;
      }

      .mn-nav,
      .mn-book {
        display: none;
      }

      .mn-toggle {
        display: flex;
      }

      .editorial {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .ed-split-visual {
        height: 500px;
      }

      .ed-split-content {
        padding: 80px 40px;
      }

      .ed-pillars {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .pillar-item {
        padding-left: 15px;
      }

      .pillar-item::after {
        left: -10px;
      }

      .feat-grid,
      .room-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .gal-item:first-child {
        grid-row: auto;
      }
    }

    @media (max-width: 576px) {
      .hero-h1 {
        font-size: 2.6rem;
      }

      .feat-grid,
      .room-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nl-form {
        flex-direction: column;
      }

      .nl-btn {
        padding: 14px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .rooms-hd {
        flex-direction: column;
        align-items: flex-start;
      }
    } /* Missing closing bracket fixed */
    
    @media (max-width: 991px) {
      .editorial {
        grid-template-columns: 1fr;
      }
      .ed-split-visual {
        min-height: 400px;
      }
      .ed-split-content {
        padding: 60px 30px;
      }
      .feat-grid {
        grid-template-columns: 1fr;
      }
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
      }
      .stat:nth-child(2) {
        border-right: none;
      }
    }

    @media (max-width: 576px) {
      .ed-pillars {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px 0;
      }
      .stat {
        border-right: none;
        border-bottom: 1px dashed rgba(201, 168, 76, .15);
      }
      .stat:last-child {
        border-bottom: none;
      }
      .feat-card {
        height: 350px;
      }
    }

    /* ── RADICAL NATIVE APP MOBILE OVERHAUL ── */
    /* Hide the tab bar on desktop by default */
    .mob-tab-bar { display: none; }

    @media (max-width: 991px) {
      /* 1. Remove Desktop Top Navigation */
      .mn-toggle, .mn-nav, .mn-book {
        display: none !important;
      }
      .mn {
        padding: 20px 24px;
        border-bottom: none;
      }
      .mn-logo {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto;
        padding: 10px 15px;
        background: transparent;
        box-shadow: none;
        border: none;
      }
      .mn.scrolled {
        padding: 10px 0;
        justify-content: center;
      }

      /* 2. Scroll Snapping & Body Setup */
      html {
        padding-bottom: 90px; /* Space for Bottom Tab Bar */
      }
      body {
        background: #000;
        padding-bottom: 90px;
      }

      /* 3. Hero Card Shape */
      .hero {
        min-height: 90svh; /* 90 ensures the next card peeks out, visually cueing the user to scroll! */
        border-radius: 0 0 30px 30px;
        overflow: hidden;
        position: relative;
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,0.9);
      }

      /* 4. Layered App Cards Paradigm */
      .editorial, .stats, .gallery-sec, .rooms, .brand-billboard, .testimonials, .newsletter, .footer {
        border-radius: 30px;
        margin: -20px 10px 30px; /* Pulls cards up over each other */
        background: #0d0907;
        position: relative;
        z-index: 5;
        box-shadow: 0 -20px 40px rgba(0,0,0,0.7), 0 20px 40px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.05);
        overflow: hidden;
      }
      
      .brand-billboard, .gallery-sec {
         border-radius: 30px;
      }

      /* 5. Mobile Bottom Tab Bar */
      .mob-tab-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 85px;
        background: rgba(15, 10, 8, 0.9);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 99999;
        justify-content: space-around;
        align-items: center;
        padding-bottom: 15px; /* iOS home bar safe area padding */
      }
      .tab-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        font-family: 'Jost', sans-serif;
        font-size: 0.6rem;
        gap: 6px;
        transition: all 0.3s;
        flex: 1;
      }
      .tab-item i {
        font-size: 1.2rem;
      }
      .tab-item.active {
        color: var(--gold);
      }
      .tab-item.highlight {
        color: #000;
        background: var(--gold);
        border-radius: 20px;
        padding: 10px 20px;
        flex: 1.2;
        box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
      }
      .tab-item.highlight i {
        font-size: 1rem;
      }

      /* Horizontal Carousels retain luxury formatting */
      .ed-pillars, .feat-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        padding-right: 30px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;          /* STRICT BOUNDARY for scroll */
        max-width: 100vw;
      }
      .ed-pillars::-webkit-scrollbar, .feat-grid::-webkit-scrollbar { display: none; }
      .pillar-item, .feat-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        border-radius: 20px; /* softer cards inside cards */
      }
      .pillar-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(201, 168, 76, 0.15);
        padding: 30px 24px;
      }
      .pillar-item::after { display: none; }

      /* Editorial Constraints */
      .editorial { margin-top: -30px; grid-template-columns: minmax(0, 1fr); padding-bottom: 40px; }
      .ed-split-visual { height: 380px; width: 100%; border-radius: 30px 30px 0 0; }
      .ed-split-content { padding: 50px 25px 0; min-width: 0; max-width: 100%; overflow: hidden; }
      .ed-story p { color: rgba(255,255,255,0.8); }

      /* Buttons & Typography */
      .btn-story { width: 100%; justify-content: center; padding: 20px 0; border-radius: 12px; }
      .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px 0; padding: 30px; }
      .stat { border-right: none !important; border-bottom: 1px dashed rgba(255,255,255,0.1); padding: 20px 0; }
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 20px; }
      
      .room-module { flex-direction: column !important; gap: 20px; margin-bottom: 40px; padding: 0 20px; }
      .room-visual { height: 350px; width: 100%; border-radius: 20px; }
      .room-text-pillar { padding: 0 10px; }
      
      .hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); text-align: left; line-height: 1.1; }
      .hero-content { padding: 0 24px 140px; text-align: left; width: 100%; }
      .hero-pretitle { margin: 0 0 20px 0; }
      .hero-divider, .hero-cta { justify-content: flex-start; }
      
      .hero-bottombar {
        display: flex;
        padding: 0 24px 24px;
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (max-width: 576px) {
      .pillar-item, .feat-card { flex: 0 0 90%; }
      .sec-title { font-size: 2.2rem; line-height: 1.1; }
      .room-pillar-name { font-size: 2.2rem; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
      .f-social, .f-contact-item { justify-content: center; }
      .f-links { align-items: center; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
    }
  

    /* ── FLATPICKR MOIPA NIGHT THEME ── */
    .flatpickr-calendar {
      background: #0c0503 !important;
      border: 1px solid rgba(201, 168, 76, .3) !important;
      box-shadow: 0 30px 60px rgba(0,0,0,0.8) !important;
      border-radius: 2px !important;
      font-family: 'Jost', sans-serif !important;
      z-index: 110000 !important;
    }
    .flatpickr-day {
      color: rgba(255,255,255,0.8) !important;
      border-radius: 2px !important;
    }
    .flatpickr-day.today {
      border-color: var(--gold) !important;
    }
    .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      color: #000 !important;
    }
    .flatpickr-day.inRange {
      background: rgba(201, 168, 76, .15) !important;
      border-color: transparent !important;
      box-shadow: none !important;
    }
    .flatpickr-day:hover {
      background: rgba(255,255,255,0.1) !important;
      border-color: transparent !important;
    }
    .flatpickr-months .flatpickr-month, .flatpickr-weekday {
      color: var(--gold) !important;
      fill: var(--gold) !important;
      text-transform: uppercase;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
    }
    .flatpickr-calendar .numInputWrapper span.arrowUp:after, 
    .flatpickr-calendar .numInputWrapper span.arrowDown:after {
      border-top-color: var(--gold) !important;
      border-bottom-color: var(--gold) !important;
    }
    .flatpickr-current-month .flatpickr-monthDropdown-months {
        font-weight: 300 !important;
    }

    /* ── BOOKING UI REFINEMENT ── */
    .bk-field.full-width {
      grid-column: span 3;
    }
    .cf-field.full {
        flex: 0 0 100%;
        max-width: 100%;
    }
    #stayDates, #cf-stayDates {
        cursor: pointer;
        letter-spacing: 0.05em;
        font-weight: 400;
        color: var(--gold);
    }
