  /* =============================================
       CASA MÁGICA — Cinematic Edition
       ============================================= */
  :root {
    --gold: #c9a84c;
    --gold-light: #dfc070;
    --gold-dark: #a07830;
    --dark: #0e0a06;
    --dark2: #1a1208;
    --mid: #2a1f14;
    --sand: #b5a48a;
    --sand-light: #ede5d4;
    --cream: #f7f2e8;
    --text-white: #f5f0e8;
    --bar-bg: rgba(14, 10, 6, 0.94);
  }

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

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text-white);
    overflow-x: hidden;
    cursor: none;
  }

  body::before {
    pointer-events: none;
    z-index: 1;
    /* LOWER IT */
  }

  .video-banner-section::after {
    z-index: 9;
  }

  .video-banner-section {
    overflow: visible !important;
  }

  /* ── CUSTOM CURSOR ── */
  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.05s;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201, 168, 76, 0.55);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s, height 0.3s, border-color 0.3s;
  }

  .cursor-ring.hovering {
    width: 64px;
    height: 64px;
    border-color: var(--gold);
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.032;
    pointer-events: none;
    z-index: 9997;
  }

  /* ── NAVBAR ── */


  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-brand img {
    max-height: 45px;
    width: auto;
  }

  .nav-brand span {
    color: #fff;
    /* change if needed */
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.5s, padding 0.4s;
  }

  #mainNav.scrolled {
    /* background: rgba(14, 10, 6, 0.95); */
    backdrop-filter: blur(16px);
    padding: 14px 48px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .nav-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-brand-mark {
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }

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

  .nav-links a:hover {
    color: #fff;
  }

  .nav-links a:hover::after {
    transform: scaleX(1);
  }

  .btn-nav-book {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    border: none;
    border-radius: 2px;
    padding: 10px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    font-weight: 500;
  }

  .btn-nav-book:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ── VIDEO BANNER ── */
  .video-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vb-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .vb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
  }

  .vb-video.vb-loaded {
    opacity: 1;
  }

  .vb-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(14, 10, 6, 0.6) 0%, rgba(14, 10, 6, 0.18) 40%, rgba(14, 10, 6, 0.7) 100%),
      linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  }

  .vb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
  }

  .vb-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
  }

  .vb-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.6s forwards;
  }

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

  .vb-sub {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 1.2s ease 0.8s forwards;
  }

  .vb-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.2s ease 1s forwards;
  }

  .vb-btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 2px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 28px rgba(201, 168, 76, 0.35);
  }

  .vb-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 168, 76, 0.5);
  }

  .vb-mute-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 2px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.25s, border-color 0.25s;
  }

  .vb-mute-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* Scroll line */
  .vb-scroll-hint {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 1.6s forwards;
  }

  .vb-scroll-hint span {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
  }

  .vb-scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.7), transparent);
    animation: scrollPulse 2.4s ease-in-out infinite;
  }

  @keyframes scrollPulse {

    0%,
    100% {
      opacity: 0.4;
      transform: scaleY(1);
    }

    50% {
      opacity: 1;
      transform: scaleY(1.2);
    }
  }

  /* Loader */
  .vb-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    transition: opacity 1.2s ease;
  }

  .vb-loader.vb-hidden {
    opacity: 0;
    pointer-events: none;
  }

  .vb-spinner {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(201, 168, 76, 0.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* ── HORIZONTAL MARQUEE BAND ── */
  .marquee-band {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-flex;
    gap: 0;
    animation: marqueeScroll 22s linear infinite;
  }

  .marquee-inner:hover {
    animation-play-state: paused;
  }

  .marquee-item {
    font-size: 0.65rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--dark);
    font-weight: 600;
    padding: 0 40px;
  }

  .marquee-sep {
    color: var(--dark);
    opacity: 0.45;
  }

  @keyframes marqueeScroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ── FULL SECTIONS ── */
  .panel {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transition: transform 0.1s linear;
  }

  .panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 10, 6, 0.8) 0%, rgba(14, 10, 6, 0.3) 60%, transparent 100%);
  }

  .panel-overlay.right {
    background: linear-gradient(to left, rgba(14, 10, 6, 0.82) 0%, rgba(14, 10, 6, 0.28) 60%, transparent 100%);
  }

  .panel-overlay.center {
    background: linear-gradient(to bottom, rgba(14, 10, 6, 0.55) 0%, rgba(14, 10, 6, 0.3) 50%, rgba(14, 10, 6, 0.72) 100%);
  }

  .panel-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 680px;
  }

  .panel-content.right-side {
    margin-left: auto;
    padding: 0 80px 0 0;
  }

  /* Section number */
  .section-num {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .section-num::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .panel-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  .panel-heading em {
    font-style: italic;
    color: var(--gold);
  }

  .panel-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
  }


  #stay {
    position: relative;
  }

  /* Top centered heading */
  #stay .top-main-heading {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    width: 90%;
  }

  #stay .top-main-heading h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
  }

  /* Optional: make it responsive */
  @media (max-width: 768px) {
    #stay .top-main-heading h1 {
      font-size: 24px;
    }
  }

  /* Pills */
  .feat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
  }

  .feat-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.75);
    border-radius: 2px;
    padding: 8px 18px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    font-weight: 500;
    text-transform: uppercase;
  }

  /* Gold link */
  .link-gold {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
  }

  .link-gold::after {
    content: '→';
    transition: transform 0.3s;
  }

  .link-gold:hover {
    gap: 16px;
    color: var(--gold-light);
  }

  /* Gold btn */
  .btn-gold {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s, transform 0.25s;
    cursor: pointer;
  }

  .btn-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
  }

  /* ── SHADOWBOX CARD (for left-content panels) ── */
  .panel-card {
    position: absolute;
    z-index: 3;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 18, 8, 0.78);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 16px;
    padding: 44px 48px;
    max-width: 460px;
    width: 42%;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }

  .panel-card .section-num {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 0.58rem;
  }

  .panel-card .panel-heading {
    font-size: clamp(2rem, 4.8vw, 4rem);
    /* margin-bottom: 16px; */
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 0.95;
  }

  .panel-card .panel-desc {
    font-size: 0.88rem;
    margin-bottom: 24px;
  }

  .panel-card .feat-pills {
    margin-bottom: 24px;
  }

  .panel-card .feat-list {
    margin-bottom: 20px;
  }

  .panel-card .feat-list li {
    padding: 10px 0;
    font-size: 0.7rem;
  }

  /* Override: for card-panels, remove gradient overlay directional bias */
  .panel.has-card .panel-overlay {
    background: linear-gradient(to right,
        rgba(14, 10, 6, 0.55) 0%,
        rgba(14, 10, 6, 0.18) 45%,
        rgba(14, 10, 6, 0.08) 100%);
  }

  @media (max-width: 991px) {
    .panel-card {
      position: relative;
      right: auto;
      top: 12rem;
      transform: none;
      width: calc(100% - 40px);
      max-width: none;
      margin: 24px 20px 40px;
      padding: 32px 28px;
    }

    .panel.has-card {
      flex-direction: column;
      align-items: flex-start;
      height: auto;
      min-height: 100vh;
    }

    .panel.has-card .panel-content {
      padding-bottom: 0;
    }
  }

  /* ── FEATURE LIST (rooftop) ── */
  .feat-list {
    list-style: none;
    margin-bottom: 28px;
  }

  .feat-list li {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .feat-list li::before {
    content: '—';
    color: var(--gold);
    font-size: 0.8rem;
  }

  /* ── LOCATION ── */
  .location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--dark2);
  }

  .location-map {
    position: relative;
    min-height: 500px;
  }

  .location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: sepia(0.5) contrast(1.1) brightness(0.8);
  }

  .location-info {
    padding: 80px 64px;
    background: var(--dark2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(201, 168, 76, 0.12);
  }

  .loc-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .loc-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .loc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .loc-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
  }

  .loc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 36px;
    border: 1px solid rgba(201, 168, 76, 0.15);
  }

  .loc-stat {
    padding: 20px 16px;
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }

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

  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
    font-weight: 500;
  }

  .stat-val {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    font-weight: 500;
    transition: border-color 0.3s, color 0.3s;
    width: fit-content;
  }

  .btn-maps:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── MOMENTS GALLERY ── */
  .moments-section {
    background: var(--dark2);
    padding: 100px 64px;
  }

  .moments-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .moments-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    color: #fff;
  }

  .moments-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-top: 6px;
  }

  .gallery-tabs {
    display: flex;
    gap: 4px;
  }

  .g-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .g-tab:hover {
    border-color: var(--gold);
    color: rgba(255, 255, 255, 0.8);
  }

  .g-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
  }

  .gallery-grid.filterable {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .g-item {
    position: relative;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
  }

  .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
    filter: brightness(0.85) saturate(0.9);
  }

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

  .g-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(14, 10, 6, 0.85), transparent);
    color: #fff;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 28px 16px 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s, transform 0.35s;
  }

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

  .g-item.g-hidden {
    display: none;
  }

  .g-item.g-visible {
    animation: gReveal 0.4s ease both;
  }

  @keyframes gReveal {
    from {
      opacity: 0;
      transform: scale(0.96);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* ── REVIEW ── */
  .review-panel {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  .review-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 10, 6, 0.82);
  }

  .review-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 0 40px;
  }

  .review-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 6px;
    margin-bottom: 36px;
  }

  .review-quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2vw, 1rem);
    font-style: italic;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
  }

  .review-author {
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
  }

  .review-more {
    margin-top: 36px;
  }


  /* ══════════════════════════════
   REVIEW PANEL CAROUSEL  (rl-)
══════════════════════════════ */
  .rl-carousel {
    overflow: hidden;
    position: relative;
  }

  .rl-track {
    display: flex;
    transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .rl-slide {
    min-width: 100%;
    box-sizing: border-box;
  }

  /* Stars */
  .rl-stars {
    color: #f5c518;
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  /* Author row */
  .rl-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
  }

  /* Gold initial circle */
  .rl-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
  }

  .rl-author-info strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
  }

  .rl-author-info span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.42);
  }

  /* Airbnb pill */
  .rl-badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 90, 95, 0.1);
    border: 1px solid rgba(255, 90, 95, 0.28);
    color: #ff8a8e;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 3px 9px;
    border-radius: 50px;
  }

  /* Controls row */
  .rl-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }

  .rl-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .rl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, width 0.25s, transform 0.25s;
  }

  .rl-dot.active {
    background: var(--gold);
    width: 20px;
    transform: none;
  }

  .rl-arrows {
    display: flex;
    gap: 7px;
  }

  .rl-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.22s, background 0.22s, color 0.22s;
  }

  .rl-arrow:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .review-panel>div[style] {
      padding: 0 20px !important;
      justify-content: center !important;
    }

    .review-panel div[style*="max-width:460px"] {
      width: 100% !important;
      max-width: 100% !important;
      padding: 32px 24px !important;
    }
  }


  /* ── ADVENTURE ── */
  .activity-list {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 2;
    letter-spacing: 0.04em;
    font-weight: 300;
    margin-bottom: 6px;
  }

  /* ── DETAILS ── */
  .details-section {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0;
    background: var(--dark);
    padding-bottom: 120px;
  }

  .details-left {
    padding: 100px 60px 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    height: fit-content;
  }

  .details-left-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .details-left-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .details-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
  }

  .details-left p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
  }

  .details-right {
    padding: 100px 60px 60px;
  }

  /* Accordion */
  .acc-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .acc-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 22px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.25s;
  }

  .acc-btn:hover {
    color: #fff;
  }

  .acc-btn.open {
    color: var(--gold);
  }

  .acc-icon {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.35s, border-color 0.25s;
    flex-shrink: 0;
  }

  .acc-btn.open .acc-icon {
    transform: rotate(45deg);
    border-color: var(--gold);
    color: var(--gold);
  }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .acc-body-inner {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    padding: 0 0 22px;
    font-weight: 300;
  }


  /* ── CONTACT ── */
  .contact-section {
    background: url('./img/footer.jpg') center/cover no-repeat;
    border-top: 1px solid rgba(58, 48, 20, 0.678);
    text-align: center;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(61, 50, 18, 0.87);
    /* adjust darkness here */
    z-index: 0.8;
  }

  .contact-section::before {
    content: 'Mágica';
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(201, 168, 76, 0.04);
    white-space: nowrap;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.02em;
  }

  .contact-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 500;
  }

  .contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .contact-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    max-width: 440px;
    line-height: 1.8;
    margin-bottom: 44px;
    position: relative;
    z-index: 1;
  }

  .contact-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }

  .contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .contact-links a {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: color 0.25s;
  }

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

  .contact-divider {
    width: 1px;
    height: 60px;
    background: rgba(201, 168, 76, 0.2);
    margin: 60px auto;
  }


  /* ── STICKY BOOKING BAR ── */
  .video-banner-section {
    position: relative;
  }

  #bannerBookingBar {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 95% !important;
    max-width: 900px !important;

    z-index: 2147483647 !important;
    /* MAX possible */

    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .video-banner-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(14, 10, 6, 0.88) 0%, transparent 100%);
    z-index: 9;
    pointer-events: none;
  }

  /* Push scroll hint up so it doesn't overlap the bar */
  .vb-scroll-hint {
    bottom: 155px;
  }

  .booking-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 12px 8px 12px 28px;
    gap: 0;
    width: 100%;
    max-width: 860px;
  }

  .booking-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 20px;
    min-width: 0;
  }

  .booking-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--sand);
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
  }

  .booking-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.85rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    cursor: pointer;
    width: 100%;
  }

  .booking-input option {
    background: var(--dark);
  }

  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.4);
    cursor: pointer;
  }

  .booking-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }

  .btn-avail {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 2px;
    padding: 12px 28px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
  }

  .btn-avail:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .questions-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
  }

  .questions-link a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }

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

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.in-view {
    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;
  }

  .reveal-delay-4 {
    transition-delay: 0.4s;
  }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
  }

  .footer-copy {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.2);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 991px) {
    #mainNav {
      padding: 16px 24px;
    }

    .nav-links {
      display: none;
    }

    .panel-content {
      padding: 0 32px;
      max-width: 100%;
    }

    .panel-content.right-side {
      padding: 0 32px;
    }

    .location-section {
      grid-template-columns: 1fr;
    }

    .location-map {
      min-height: 320px;
    }

    .loc-stats {
      grid-template-columns: 1fr;
    }

    .details-section {
      grid-template-columns: 1fr;
      padding-bottom: 120px;
    }

    .details-left {
      position: static;
      padding: 60px 32px 30px;
    }

    .details-right {
      padding: 0 32px 60px;
    }

    .moments-section {
      padding: 60px 24px;
    }

    .moments-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

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

    #stickyBar {
      padding: 14px 20px 12px;
    }

    .booking-bar {
      flex-wrap: wrap;
      border-radius: 2px;
      padding: 16px;
      gap: 12px;
    }

    .booking-field {
      flex: 1 1 120px;
    }

    .booking-divider {
      display: none;
    }

    .btn-avail {
      width: 100%;
      margin-left: 0;
      margin-top: 4px;
    }

    .site-footer {
      flex-direction: column;
      gap: 12px;
      text-align: center;
      padding: 28px 24px;
    }
  }

  @media (max-width: 576px) {
    .vb-title {
      font-size: 3.2rem;
    }

    .gallery-grid.filterable {
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
    }

    .g-item {
      height: 160px;
    }

    .contact-section {
      padding: 80px 24px 60px;
    }

    .location-info {
      padding: 48px 28px;
    }

    #stay .top-main-heading {
      top: 0px;
    }

  }