
    :root{
      /* Palette: quiet luxury */
      --bg:#0b0c10;
      --bg2:#101118;
      --ink:#0e0f12;
      --ivory:#f6f3ee;
      --ivory2:#efe9de;
      --text:#f5f1ea;
      --muted:rgba(245,241,234,.72);
      --muted2:rgba(245,241,234,.58);
      --line:rgba(255,255,255,.08);
      --line2:rgba(14,15,18,.12);
      --gold:#c7a45a;
      --gold2:#e3c98a;
      --shadow:0 28px 70px rgba(0,0,0,.45);
      --shadow2:0 18px 50px rgba(0,0,0,.35);
      --radius:18px;
      --radius2:26px;
      --ease:cubic-bezier(.2,.9,.2,1);
      --container: min(1200px, calc(100vw - 48px));
    }

    *{box-sizing:border-box; margin:0; padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height:1.55;
      overflow-x:hidden;
    }
    img{display:block; max-width:100%}
    a{color:inherit; text-decoration:none}
    button, input, select{font:inherit}
    ::selection{background: rgba(199,164,90,.35)}

    /* Utilities */
    .container{width:var(--container); margin:0 auto}
    .fine{font-size:12px; letter-spacing:.02em; color:var(--muted2)}
    .kicker{
      font-size:12px;
      letter-spacing:.34em;
      text-transform:uppercase;
      color: var(--gold2);
      margin-bottom:14px;
    }
    .kicker.gold{color:var(--gold)}
    .display{
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight:400;
      letter-spacing:.01em;
      font-size: clamp(34px, 3.4vw, 54px);
      line-height:1.08;
      margin-bottom:18px;
    }
    .body{font-size:16px; color: rgba(14,15,18,.68)}
    .body.subtle{color: rgba(14,15,18,.56)}
    .body.subtle-on-dark{color:var(--muted)}
    .link{
      display:inline-flex; align-items:center; gap:10px;
      margin-top:18px;
      font-size:13px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color: rgba(14,15,18,.82);
    }
    .link:hover{transform:translateX(2px)}
    .link.link-gold{color:var(--gold2)}
    .link.link-gold:hover{color:var(--gold)}

    /* Skip link */
    .skip-link{
      position:absolute; left:-999px; top:10px;
      background: var(--ivory);
      color: var(--ink);
      padding:10px 14px;
      border-radius:12px;
      z-index:9999;
      border:1px solid rgba(14,15,18,.15);
    }
    .skip-link:focus{left:14px}

    /* Header */
    .site-header{
      position:fixed; top:0; left:0; right:0;
      z-index:1000;
      background: rgba(11,12,16,.62);
      border-bottom:1px solid rgba(255,255,255,.07);
      backdrop-filter: blur(10px);
    }
    .header-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding: 16px 6px;
    }

    .icon-btn{
      border:0;
      background: transparent;
      color: var(--text);
      display:inline-flex;
      align-items:center;
      gap:12px;
      padding:10px 12px;
      border-radius: 999px;
      cursor:pointer;
      transition: background .2s var(--ease), transform .2s var(--ease);
    }
    .icon-btn:hover{background: rgba(255,255,255,.06)}
    .icon-btn:active{transform: translateY(1px)}
    .icon-label{
      font-size:12px;
      letter-spacing:.22em;
      text-transform:uppercase;
      color: var(--muted);
    }
    .hamburger{
      width:20px; height:12px; position:relative; display:inline-block;
    }
    .hamburger:before, .hamburger:after, .hamburger span{
      content:""; position:absolute; left:0; right:0; height:1px;
      background: rgba(245,241,234,.86);
      border-radius: 2px;
    }
    .hamburger:before{top:0}
    .hamburger:after{bottom:0}
    .hamburger span{top:50%; transform: translateY(-50%)}

    .brand{
      display:flex; flex-direction:column; align-items:center;
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      letter-spacing:.18em;
      text-transform:uppercase;
      user-select:none;
    }
    .brand-top{font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size:10px; color: var(--gold2); letter-spacing:.38em}
    .brand-main{font-size:20px; line-height:1.05}
    .brand-sub{font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size:11px; color: var(--muted2); letter-spacing:.42em}

    .header-actions{display:flex; align-items:center; gap:10px}

    /* Buttons */
    .btn{
      border:1px solid transparent;
      background: transparent;
      color: var(--text);
      padding: 12px 18px;
      border-radius: 999px;
      font-size:12px;
      letter-spacing:.22em;
      text-transform:uppercase;
      cursor:pointer;
      transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), color .22s var(--ease);
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px)}
    .btn:active{transform: translateY(0)}
    .btn-primary{
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      color:#0b0c10;
      border-color: rgba(0,0,0,.15);
      box-shadow: 0 14px 30px rgba(199,164,90,.22);
    }
    .btn-primary:hover{filter:brightness(1.02)}
    .btn-ghost{
      border-color: rgba(255,255,255,.06);
      background: rgba(255,255,255,.03);
    }
    .btn-ghost:hover{background: rgba(255,255,255,.06)}
    .btn-outline{
      border-color: rgba(199,164,90,.7);
      color: var(--gold2);
      background: rgba(199,164,90,.06);
    }
    .btn-outline:hover{background: rgba(199,164,90,.12)}
    .btn-block{width:100%; justify-content:center; display:inline-flex}

    .btn-sm{padding:10px 14px; font-size:11px; letter-spacing:.18em}

    /* Drawer */
    .drawer{position:fixed; inset:0; z-index:1200; pointer-events:none}
    .drawer.is-open{pointer-events:auto}
    .drawer-overlay{
      position:absolute; inset:0;
      background: rgba(0,0,0,.55);
      opacity:0;
      transition: opacity .25s var(--ease);
    }
    .drawer.is-open .drawer-overlay{opacity:1}
    .drawer-panel{
      position:absolute; top:0; left:0; height:100%;
      width: min(440px, 92vw);
      background: rgba(11,12,16,.94);
      border-right:1px solid rgba(255,255,255,.08);
      transform: translateX(-102%);
      transition: transform .35s var(--ease);
      box-shadow: var(--shadow);
      padding: 18px 18px 22px;
      display:flex; flex-direction:column;
    }
    .drawer.is-open .drawer-panel{transform: translateX(0)}
    .drawer-top{display:flex; align-items:center; justify-content:space-between; padding:10px 6px 14px}
    .drawer-title{font-size:12px; letter-spacing:.28em; text-transform:uppercase; color:var(--muted)}
    .close-btn .x{
      width:18px; height:18px; display:inline-block; position:relative;
    }
    .close-btn .x:before, .close-btn .x:after{
      content:""; position:absolute; left:50%; top:50%;
      width:18px; height:1px; background: rgba(245,241,234,.85);
      transform-origin:center;
    }
    .close-btn .x:before{transform: translate(-50%,-50%) rotate(45deg)}
    .close-btn .x:after{transform: translate(-50%,-50%) rotate(-45deg)}
    .drawer-nav{
      display:flex; flex-direction:column; gap:10px;
      padding: 10px 6px 18px;
    }
    .drawer-link{
      padding: 14px 14px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.06);
      background: rgba(255,255,255,.02);
      color: var(--text);
      font-size:12px;
      letter-spacing:.22em;
      text-transform:uppercase;
      transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
    }
    .drawer-link:hover{
      background: rgba(199,164,90,.08);
      border-color: rgba(199,164,90,.25);
      transform: translateX(2px);
    }
    .drawer-foot{margin-top:auto; padding: 14px 8px 0}

    /* Hero */
    .hero{position:relative; min-height: 100vh}
    .hero-media{position:absolute; inset:0}
    .hero-video{width:100%; height:100%; object-fit:cover; filter: saturate(.92) contrast(1.02)}
    .hero-scrim{
      position:absolute; inset:0;
      background:
        radial-gradient(1200px 700px at 25% 20%, rgba(199,164,90,.18), transparent 55%),
        linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 58%, rgba(0,0,0,.88) 100%);
    }
    .hero-content{
      position:relative;
      padding-top: 120px;
      padding-bottom: 72px;
      min-height: 100vh;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 26px;
      align-items:end;
    }
    .hero-copy{max-width: 680px; padding: 20px 0 10px}
    .hero-title{
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 400;
      font-size: clamp(40px, 4.2vw, 64px);
      line-height:1.06;
      letter-spacing:.01em;
      margin-bottom: 18px;
    }
    .hero-lead{
      color: var(--muted);
      font-size: var(--fs-base);
      max-width: 54ch;
      margin-bottom: 26px;
    }
    .hero-cta{display:flex; gap:12px; flex-wrap:wrap}

    .scroll-indicator{
      margin-top: 22px;
      width:42px; height:42px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.18);
      display:inline-grid;
      place-items:center;
      cursor:pointer;
      transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
    }
    .scroll-indicator:hover{
      transform: translateY(-2px);
      background: rgba(199,164,90,.12);
      border-color: rgba(199,164,90,.35);
    }
    .scroll-indicator .chev{
      width:10px; height:10px;
      border-right:1.5px solid rgba(245,241,234,.85);
      border-bottom:1.5px solid rgba(245,241,234,.85);
      transform: rotate(45deg) translateY(-1px);
      animation: bounce 1.6s var(--ease) infinite;
    }
    @keyframes bounce{
      0%,100%{transform: rotate(45deg) translate(0, -2px); opacity:.9}
      50%{transform: rotate(45deg) translate(0, 2px); opacity:1}
    }

    /* Booking card */
    .booking-card{
      align-self:end;
      justify-self:end;
      width: min(420px, 100%);
      background: rgba(246,243,238,.96);
      color: var(--ink);
      border: 1px solid rgba(14,15,18,.10);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      overflow:hidden;
      transform: translateY(6px);
    }
    .booking-head{
      padding: 22px 22px 0;
    }
    .booking-head h3{
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 400;
      letter-spacing:.02em;
      margin-bottom: 8px;
      font-size: 22px;
    }
    .booking-form{padding: 18px 22px 22px}
    .field{display:block; margin-bottom:14px}
    .label{
      display:block;
      font-size: 11px;
      letter-spacing:.22em;
      text-transform:uppercase;
      color: rgba(14,15,18,.64);
      margin-bottom: 8px;
    }
    .booking-form input, .booking-form select{
      width:100%;
      border-radius: 14px;
      border: 1px solid rgba(14,15,18,.16);
      background: rgba(255,255,255,.72);
      padding: 12px 12px;
      outline: none;
      transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
    }
    .booking-form input:focus, .booking-form select:focus{
      border-color: rgba(199,164,90,.65);
      box-shadow: 0 0 0 4px rgba(199,164,90,.15);
      background: #fff;
    }
    .field-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    .booking-result{
      margin-top: 12px;
      font-size: 12px;
      color: rgba(14,15,18,.72);
      min-height: 18px;
    }

    /* Sections */
    main{position:relative}
    .section{padding: 120px 0}
    .section-ivory{background: var(--ivory); color: var(--ink)}
    .section-dark{background: linear-gradient(180deg, #0b0c10, #0f1117);}
    .grid-2{display:grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items:center}
    .grid-2.reverse{grid-template-columns: 1fr 1fr}
    .grid-2.reverse > :first-child{order:2}
    .panel-text .body{margin-top:12px}
    .panel-media img{
      border-radius: var(--radius2);
      box-shadow: 0 18px 55px rgba(0,0,0,.25);
      border: 1px solid rgba(14,15,18,.08);
      object-fit: cover;
      width:100%;
      aspect-ratio: 4/3;
    }

    .pill-row{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 0}
    .pill{
      padding: 10px 12px;
      border-radius: 999px;
      font-size: 11px;
      letter-spacing:.16em;
      text-transform:uppercase;
      background: rgba(14,15,18,.06);
      border: 1px solid rgba(14,15,18,.12);
      color: rgba(14,15,18,.72);
    }
    .pill-dark{
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.12);
      color: var(--muted);
    }

    /* Section head + filter chips */
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap: 22px;
    }
    .section-title{
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-weight: 400;
      font-size: clamp(30px, 2.8vw, 44px);
      line-height:1.12;
      letter-spacing:.01em;
      margin-top: 6px;
    }
    .section-actions{display:flex; gap:10px; flex-wrap:wrap}
    .chip{
      border:1px solid rgba(14,15,18,.14);
      background: rgba(255,255,255,.55);
      padding: 10px 14px;
      border-radius: 999px;
      cursor:pointer;
      font-size: 11px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color: rgba(14,15,18,.70);
      transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
    }
    .chip:hover{transform: translateY(-1px); border-color: rgba(199,164,90,.35)}
    .chip.is-active{
      background: rgba(199,164,90,.14);
      border-color: rgba(199,164,90,.45);
      color: rgba(14,15,18,.88);
    }

    /* Cards */
    .cards{
      margin-top: 40px;
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 22px;
    }
    .room-card{
      grid-column: span 3;
      background: #fff;
      border-radius: var(--radius);
      overflow:hidden;
      border: 1px solid rgba(14,15,18,.10);
      box-shadow: 0 16px 40px rgba(0,0,0,.12);
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
      display:flex; flex-direction:column;
    }
    .room-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 22px 55px rgba(0,0,0,.16);
    }
    .room-media img{
      width:100%;
      height: 190px;
      object-fit: cover;
      filter: saturate(.96) contrast(1.02);
    }
    .room-body{
      padding: 18px 18px 18px;
      color: var(--ink);
      display:flex;
      flex-direction:column;
      gap: 8px;
      flex:1;
    }
    .stars{color: var(--gold); letter-spacing:.08em; font-size:12px}
    .price{display:flex; align-items:baseline; gap:8px}
    .amount{font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 22px; color: rgba(14,15,18,.90)}
    .per{font-size: 12px; color: rgba(14,15,18,.55)}
    .room-title{font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 18px}
    .room-card .fine{color: rgba(14,15,18,.58)}
    .room-card .btn{align-self:flex-start}
    .room-card[hidden]{display:none !important}

    /* Feature blocks */
    .feature{
      display:grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
      align-items:center;
    }
    .feature.reverse{grid-template-columns: 1.1fr 1fr}
    .feature.reverse .feature-text{order:2}
    .feature-text .body{margin: 12px 0 16px}
    .feature-media img{
      width:100%;
      aspect-ratio: 16/11;
      object-fit: cover;
      border-radius: var(--radius2);
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: var(--shadow2);
    }
    .list{margin-top:10px; padding-left: 18px; color: rgba(14,15,18,.62)}
    .list li{margin:8px 0}

    

    /* Contact */
    .contact{padding-bottom: 0}
    .contact-card{
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius2);
      padding: 28px;
      box-shadow: var(--shadow2);
    }
    .contact-card .section-title{color: var(--text)}
    .contact-card .body{color: var(--muted)}
    .contact-grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 18px;
    }
    .contact-item{
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 14px;
    }
    .contact-item .label{color: var(--muted2)}
    .contact-item .value{color: var(--text); font-size: 13px}
    .contact-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top: 18px}

    /* Footer */
    .footer{padding: 26px 0 34px}
    .footer-inner{
      display:flex; align-items:center; justify-content:space-between;
      gap: 14px;
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 18px;
    }

    /* Modal */
    .modal{position:fixed; inset:0; z-index:1400; pointer-events:none}
    .modal.is-open{pointer-events:auto}
    .modal-overlay{
      position:absolute; inset:0;
      background: rgba(0,0,0,.62);
      opacity:0;
      transition: opacity .25s var(--ease);
    }
    .modal.is-open .modal-overlay{opacity:1}
    .modal-panel{
      position:absolute;
      left:50%; top:50%;
      transform: translate(-50%,-48%) scale(.98);
      width: min(720px, calc(100vw - 28px));
      background: rgba(246,243,238,.98);
      color: var(--ink);
      border-radius: var(--radius2);
      box-shadow: var(--shadow);
      border: 1px solid rgba(14,15,18,.10);
      opacity:0;
      transition: opacity .25s var(--ease), transform .25s var(--ease);
      overflow:hidden;
    }
    .modal.is-open .modal-panel{opacity:1; transform: translate(-50%,-50%) scale(1)}
    .modal-top{
      display:flex; align-items:center; justify-content:space-between;
      padding: 18px 18px 10px;
      border-bottom: 1px solid rgba(14,15,18,.10);
    }
    .modal-top h3{font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; font-weight:400; font-size: 22px}
    .modal-content{
      padding: 16px 18px 8px;
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 14px;
      align-items:start;
    }
    .modal-content img{
      width:100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      border-radius: 18px;
      border: 1px solid rgba(14,15,18,.10);
    }
    .modal-media-stack{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .modal-gallery{
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:10px;
    }
    .modal-thumb{
      padding:0;
      background:transparent;
      border:0;
      cursor:pointer;
      border-radius:14px;
      overflow:hidden;
      outline:none;
    }
    .modal-thumb img{
      aspect-ratio: 1 / 1;
      border-radius:14px;
      opacity:.82;
      transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
    }
    .modal-thumb:hover img,
    .modal-thumb.is-active img{
      opacity:1;
      transform: translateY(-1px);
      border-color: rgba(199,162,88,.55);
    }
    .modal-meta{
      display:flex; flex-direction:column; gap:10px;
    }
    .kv{
      background: rgba(14,15,18,.04);
      border: 1px solid rgba(14,15,18,.10);
      border-radius: 18px;
      padding: 12px;
    }
    .kv .k{font-size:11px; letter-spacing:.22em; text-transform:uppercase; color: rgba(14,15,18,.58)}
    .kv .v{margin-top:6px; font-size: 13px; color: rgba(14,15,18,.82)}
    .modal-actions{
      padding: 12px 18px 18px;
      display:flex; justify-content:flex-end; gap:10px;
      border-top: 1px solid rgba(14,15,18,.10);
    }

    /* Toast */
    .toast{
      position:fixed;
      left:50%;
      bottom: 18px;
      transform: translateX(-50%) translateY(20px);
      background: rgba(11,12,16,.92);
      color: var(--text);
      border: 1px solid rgba(255,255,255,.12);
      padding: 12px 14px;
      border-radius: 14px;
      box-shadow: 0 14px 40px rgba(0,0,0,.35);
      opacity:0;
      z-index:1600;
      transition: opacity .22s var(--ease), transform .22s var(--ease);
      pointer-events:none;
      max-width: min(560px, calc(100vw - 32px));
      text-align:center;
      font-size: 12px;
      letter-spacing:.02em;
    }
    .toast.is-show{opacity:1; transform: translateX(-50%) translateY(0)}

    /* Responsive */
    @media (max-width: 1100px){
      .hero-content{grid-template-columns: 1fr; align-items:start; gap:18px}
      .booking-card{justify-self:start}
      .room-card{grid-column: span 6}
      .modal-content{grid-template-columns: 1fr}
    }
    @media (max-width: 640px){
      .modal-gallery{grid-template-columns: repeat(2, minmax(0, 1fr));}
    }
    @media (max-width: 720px){
      .header-inner{padding: 14px 0}
      .icon-label{display:none}
      .hero-title{font-size: 42px}
      .section{padding: 88px 0}
      .grid-2, .feature{grid-template-columns: 1fr; gap: 26px}
      .grid-2.reverse > :first-child{order:0}
      .feature.reverse .feature-text{order:0}
      .room-card{grid-column: span 12}
      .contact-grid{grid-template-columns: 1fr}
      .footer-inner{flex-direction:column; align-items:flex-start}
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *{animation:none !important; transition:none !important}
    }
  


/* ---------- ANIMATIONS (scroll reveal + hover) ---------- */

/* Global motion curve */
:root{ --motion: cubic-bezier(.2,.9,.2,1); }

/* Subtle hover polish for images/cards */
.room-card, .panel-media img, .feature-media img, .masonry img{
  transition: transform .45s var(--motion), box-shadow .45s var(--motion), filter .45s var(--motion);
  will-change: transform;
}

.room-card:hover{
  transform: translateY(-8px);
}

.panel-media img:hover,
.feature-media img:hover,
.masonry img:hover{
  transform: scale(1.015);
  filter: saturate(1.02) contrast(1.03);
  box-shadow: 0 26px 70px rgba(0,0,0,.20);
}

/* Gentle underline animation for links */
.link{
  position: relative;
}
.link::after{
  content:"";
  position:absolute;
  left:0; bottom:-6px;
  height:1px; width:100%;
  background: rgba(14,15,18,.22);
  transform: scaleX(.0);
  transform-origin:left;
  transition: transform .35s var(--motion), background .35s var(--motion);
}
.link:hover::after{
  transform: scaleX(1);
  background: rgba(199,164,90,.55);
}

/* Button micro-interactions */
.btn{
  transition: transform .25s var(--motion), box-shadow .35s var(--motion), filter .35s var(--motion), background .25s var(--motion);
}
.btn:hover{
  transform: translateY(-2px);
}
.btn-primary:hover{
  box-shadow: 0 18px 44px rgba(199,164,90,.28);
}

/* Scroll-reveal base */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .85s var(--motion), transform .85s var(--motion);
}
.reveal.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
.reveal--fade{ transform: none; }
.reveal--fade.is-in{ opacity:1; transform:none; }

.reveal--up{ transform: translateY(22px); }
.reveal--up.is-in{ transform: translateY(0); }

.reveal--left{ transform: translateX(-24px); }
.reveal--left.is-in{ transform: translateX(0); }

.reveal--right{ transform: translateX(24px); }
.reveal--right.is-in{ transform: translateX(0); }

.reveal--zoom{ transform: scale(.985); }
.reveal--zoom.is-in{ transform: scale(1); }

/* Stagger helper for grids */
[data-stagger] .reveal{
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none !important;}
  .room-card, .panel-media img, .feature-media img, .masonry img, .btn, .link::after{transition:none !important;}
}


/* Media hover overlay */
.media-hover{ position:relative; overflow:hidden; border-radius: var(--radius2); }
.room-media.media-hover{ border-radius: var(--radius); }
.media-hover::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(800px 500px at 30% 20%, rgba(199,164,90,.18), transparent 60%),
              linear-gradient(to top, rgba(0,0,0,.12), transparent 55%);
  opacity:0;
  transition: opacity .45s var(--motion);
  pointer-events:none;
}
.media-hover:hover::after{ opacity:1; }


/* ---------- ROOMS FILTER ANIMATIONS ---------- */
.room-card{
  /* keep existing hover; add animated state changes */
  transform-origin: center;
}
.room-card.is-exiting{
  opacity: 0;
  transform: translateY(10px) scale(.985);
  transition: opacity .28s var(--motion), transform .28s var(--motion);
}
.room-card.is-entering{
  opacity: 0;
  transform: translateY(14px) scale(.985);
}
.room-card.is-entering.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .48s var(--motion), transform .48s var(--motion);
}

/* Chips: animated underline + pressed feedback */
.chip{
  position: relative;
  overflow: hidden;
}
.chip::after{
  content:"";
  position:absolute;
  left:14px; right:14px; bottom:7px;
  height:1px;
  background: rgba(199,164,90,.55);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .35s var(--motion);
}
.chip.is-active::after{
  transform: scaleX(1);
}
.chip:active{
  transform: translateY(0);
}

/* Optional: section head reveal accent */
#rooms .section-head.reveal.is-in{
  transition-delay: 60ms;
}


/* ---------- ROOMS FILTER: SMOOTH FLIP LAYOUT ---------- */
#roomsGrid{
  /* helps the browser optimize during FLIP */
  contain: layout paint;
}
#roomsGrid.is-flipping .room-card{
  will-change: transform, opacity;
}
.room-card{
  transition: transform .62s var(--motion), opacity .42s var(--motion), box-shadow .45s var(--motion), filter .45s var(--motion);
}
.room-card.is-leaving{
  opacity: 0;
  transform: translateY(14px) scale(.992);
  pointer-events:none;
}

.room-card.is-hidden{
  display:none !important;
}
.room-card.is-entering{
  opacity: 0;
  transform: translateY(14px) scale(.985);
}
.room-card.is-entering.is-in{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ---------- ROOMS FILTER: OVERLAY EXIT CLONES (smoother) ---------- */
#roomsGrid{ position: relative; }
.rooms-overlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 10;
}
.rooms-overlay .room-card{
  position:absolute !important;
  margin:0 !important;
}



/* ---------- TYPOGRAPHY SYSTEM (Montserrat) ---------- */

/* Global text */
body{
  font-weight: 400;
}

/* Hero main title */
.hero-title{
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Large editorial displays */
.display{
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Section titles */
.section-title{
  font-weight: 500;
  letter-spacing: -0.004em;
}

/* Subtitles / kickers */
.kicker{
  font-weight: 600;
  letter-spacing: 0.34em;
}

/* Body text */
.body{
  font-weight: 400;
}

/* Subtle / secondary body */
.body.subtle,
.body.subtle-on-dark,
.fine{
  font-weight: 400;
  opacity: 0.85;
}

/* Card titles */
.room-title{
  font-weight: 500;
}

/* Prices */
.amount{
  font-weight: 600;
}

/* Buttons */
.btn{
  font-weight: 600;
  letter-spacing: 0.22em;
}

/* Navigation & UI labels */
.icon-label,
.drawer-title,
.drawer-link,
.label{
  font-weight: 600;
  letter-spacing: 0.22em;
}

/* Pills / chips */
.pill,
.chip{
  font-weight: 500;
  letter-spacing: 0.18em;
}

/* Footer */
.footer,
.footer .fine{
  font-weight: 400;
}



/* ---------- TYPO REFINEMENT (scale + micro-adjust) ---------- */
:root{
  /* Type scale (ratio ~1.25) */
  --fs-xxs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 16px;
  --fs-md: 20px;
  --fs-lg: 25px;
  --fs-xl: 31px;
  --fs-2xl: 39px;
  --fs-3xl: 49px;
  --fs-hero: clamp(42px, 4.2vw, 66px);
}

/* Apply scale */
.fine{ font-size: var(--fs-xs); }
.kicker{ font-size: var(--fs-xs); }
.icon-label, .drawer-title, .drawer-link, .label, .btn{ font-size: var(--fs-xs); }
.pill, .chip{ font-size: 11px; }
.body{ font-size: var(--fs-base); }
.amount{ font-size: 22px; } /* keeps price punch */

/* Headlines */
.section-title{ font-size: clamp(30px, 2.8vw, 44px); }
.display{ font-size: clamp(34px, 3.4vw, 54px); }
.hero-title{ font-size: var(--fs-hero); }

/* Micro-tracking (more editorial, less "tech") */
.hero-title{
  letter-spacing: -0.015em;
}
.display{
  letter-spacing: -0.012em;
}
.section-title{
  letter-spacing: -0.010em;
}
.room-title{
  letter-spacing: -0.006em;
}
.body{
  letter-spacing: 0.005em;
}

/* Subtle body weight tuning on large screens */
@media (min-width: 1100px){
  body{ font-weight: 380; }
  .body{ color: rgba(14,15,18,.64); }
  .body.subtle{ color: rgba(14,15,18,.54); }
  .hero-lead{ color: rgba(245,241,234,.74); }
}

/* Slightly calmer UI tracking */
.btn, .icon-label, .drawer-link, .drawer-title, .label{
  letter-spacing: 0.20em;
}
.kicker{ letter-spacing: 0.32em; }

/* Brand logo replacement */
.brand-logo img{
  height: 76px;
  width: auto;
  display: block;
}
@media (max-width:720px){
  .brand-logo img{ height: 60px; }
}



/* ---------- BRAND LOGO: white↔gold swap + micro animation ---------- */
.brand-logo img{
  height: 76px;
  width: auto;
  display: block;
  transform: translateY(-2px);
  opacity: 0;
  transition: opacity .55s var(--motion), transform .65s var(--motion), filter .35s var(--motion);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}
.site-header.is-ready .brand-logo img,
.brand-logo img.is-ready{
  opacity: 1;
  transform: translateY(0);
}
.brand-logo img.is-swapping{
  opacity: 0.25;
  transform: translateY(1px);
}

/* Header on light sections */
.site-header.on-light{
  background: rgba(246,243,238,.72);
  border-bottom: 1px solid rgba(14,15,18,.10);
}
.site-header.on-light .icon-btn{
  color: rgba(14,15,18,.92);
}
.site-header.on-light .icon-label{
  color: rgba(14,15,18,.62);
}
.site-header.on-light .hamburger:before,
.site-header.on-light .hamburger:after,
.site-header.on-light .hamburger span{
  background: rgba(14,15,18,.75);
}
.site-header.on-light .btn-ghost{
  border-color: rgba(14,15,18,.10);
  background: rgba(255,255,255,.55);
  color: rgba(14,15,18,.82);
}
.site-header.on-light .btn-primary{
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #0b0c10;
}
@media (max-width:720px){
  .brand-logo img{ height: 60px; }
}



/* ---------- CONTACT MAP ---------- */
.contact-map{
  margin-top: 16px;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.contact-map iframe{
  width: 100%;
  height: 220px; /* horizontal */
  border: 0;
  display:block;
  filter: saturate(.92) contrast(1.02);
}
@media (max-width:720px){
  .contact-map iframe{ height: 260px; }
}



/* ---------- GALLERY 3x3 GRID ---------- */
#gallery .masonry{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
#gallery .masonry img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 900px){
  #gallery .masonry{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px){
  #gallery .masonry{
    grid-template-columns: 1fr;
  }
}

/* ---------- HERO YOUTUBE BACKGROUND ---------- */
.hero-youtube{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.hero-youtube iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:100vw;
  height:56.25vw; /* 16:9 */
  min-height:100vh;
  min-width:177.78vh; /* 16:9 */
  transform:translate(-50%,-50%);
  pointer-events:none;
}

/* Slightly lighter tint so text pops without over-darkening */
.hero-scrim{
  background:
    radial-gradient(1200px 700px at 25% 20%, rgba(199,164,90,.16), transparent 58%),
    linear-gradient(to bottom, rgba(0,0,0,.14) 0%, rgba(0,0,0,.56) 58%, rgba(0,0,0,.78) 100%);
}



/* ---------- HERO YOUTUBE CROP (hide lower text) ---------- */
.hero-youtube iframe{
  transform: translate(-50%, -52%) scale(1.08);
}



/* ---------- SERVICES GRID (3x2, symmetric) ---------- */
.services-grid{
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 60px;
  align-items: start;
}
.service-card{
  text-align: center;
  padding: 26px 22px;
  border-radius: 18px;
  border: 1px solid rgba(14,15,18,.08);
  background: rgba(255,255,255,.58);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .55s var(--motion), box-shadow .55s var(--motion);
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.10);
}
.service-icon{
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  color: var(--gold);
  background: radial-gradient(500px 220px at 30% 25%, rgba(199,164,90,.18), rgba(255,255,255,.35) 55%, rgba(255,255,255,.0) 100%);
  border: 1px solid rgba(199,164,90,.28);
}
.service-icon svg{ width: 30px; height: 30px; }
.service-title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.006em;
  margin-bottom: 10px;
  color: rgba(14,15,18,.88);
}
.service-text{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(14,15,18,.62);
  max-width: 30ch;
  margin: 0 auto;
}
@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; gap: 64px 60px; }
  .service-card{ text-align:left; display:grid; grid-template-columns: 64px 1fr; gap: 14px; align-items:center; }
  .service-icon{ margin:0; }
  .service-text{ margin:0; max-width:none; }
}



/* ---------- SERVICES ICON STYLE (match reference) ---------- */
.service-card{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 18px 10px;
}
.service-card:hover{
  transform: translateY(-2px);
  box-shadow: none;
}
.service-icon{
  width: auto;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--gold);
}
.service-icon svg{
  width: 44px;
  height: 44px;
}
.service-title{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-text{
  font-size: 13px;
  color: rgba(14,15,18,.58);
  max-width: 34ch;
}



/* ---------- REVIEWS / TESTIMONIALS ---------- */
.reviews-head{ text-align:center; justify-content:center; }
.reviews-head .section-title{ text-align:center; margin-left:auto; margin-right:auto; }
.reviews-head .body{ text-align:center; margin-left:auto; margin-right:auto; max-width: 70ch; }

.reviews-shell{
  margin-top: 36px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
}

.reviews-viewport{
  overflow: hidden;
  border-radius: 18px;
}

.review-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .75s var(--motion);
  will-change: transform;
}

.review-card{
  padding: 34px 30px 28px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(14,15,18,.08);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
  text-align: center;
}

.review-text{
  font-size: 16px;
  line-height: 1.9;
  color: rgba(14,15,18,.66);
  max-width: 72ch;
  margin: 0 auto 22px;
}

.review-meta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  margin-bottom: 18px;
}

.review-rating .star{
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}
.review-rating .star--dim{
  color: rgba(199,164,90,.35);
}

.review-name{
  font-weight: 500;
  color: rgba(14,15,18,.82);
}

.review-source{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(14,15,18,.52);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.source-mark{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(199,164,90,.28);
  background:
    radial-gradient(14px 14px at 35% 38%, rgba(199,164,90,.22), rgba(255,255,255,0) 65%),
    radial-gradient(18px 18px at 70% 62%, rgba(199,164,90,.12), rgba(255,255,255,0) 70%);
}

.review-nav{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(14,15,18,.10);
  background: rgba(255,255,255,.55);
  color: rgba(14,15,18,.70);
  display:grid;
  place-items:center;
  transition: transform .25s var(--motion), background .35s var(--motion), box-shadow .35s var(--motion);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.review-nav:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.72);
}
.review-nav:active{ transform: translateY(0); }

.reviews-dots{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-top: 12px;
}
.dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(199,164,90,.45);
  background: rgba(199,164,90,.14);
  transition: transform .25s var(--motion), background .35s var(--motion);
}
.dot.is-active{
  background: rgba(199,164,90,.55);
  transform: scale(1.15);
}

@media (max-width: 820px){
  .reviews-shell{ grid-template-columns: 52px 1fr 52px; }
  .review-card{ padding: 28px 22px 24px; }
}
@media (max-width: 560px){
  .reviews-shell{ grid-template-columns: 44px 1fr 44px; gap: 10px; }
  .review-text{ font-size: 15px; line-height: 1.85; }
}



/* ---------- ROOM CTA BUTTON (SPA / VIEW DETAILS) ---------- */
.room-card .btn,
.room-card .btn-link,
.room-card a.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0b0c10;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border: 1px solid rgba(199,164,90,.65);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .35s var(--motion), box-shadow .35s var(--motion), filter .35s var(--motion);
}

.room-card .btn:hover,
.room-card .btn-link:hover,
.room-card a.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.28);
  filter: brightness(1.05);
}

.room-card .btn:active,
.room-card .btn-link:active,
.room-card a.btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}



/* ---------- ALIGN ROOM CTA BUTTONS ---------- */
/* Make room cards a flex column so CTA sticks to bottom */
.room-card{
  display: flex;
  flex-direction: column;
}

/* Push CTA to the same baseline */
.room-card .btn,
.room-card .btn-link,
.room-card a.btn{
  margin-top: auto;
}



/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switch{
  display:flex;
  gap: 8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.site-header.on-light .lang-switch{
  border-color: rgba(14,15,18,.10);
  background: rgba(255,255,255,.55);
}
.lang-btn{
  height: 28px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(245,241,234,.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s var(--motion), transform .25s var(--motion), color .25s var(--motion), border-color .25s var(--motion);
}
.site-header.on-light .lang-btn{
  border-color: rgba(14,15,18,.10);
  color: rgba(14,15,18,.70);
}
.lang-btn:hover{ transform: translateY(-1px); }
.lang-btn.is-active{
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  border-color: rgba(199,164,90,.65);
  color: #0b0c10;
}
@media (max-width: 820px){
  .lang-switch{ padding: 6px 8px; gap: 6px; }
  .lang-btn{ height: 26px; min-width: 32px; padding: 0 9px; }
}


/* ===== CA Moroni fixes: room modal text + BOOK button ===== */
.modal-panel .kv .k,
.modal-panel .kv .v,
.modal-panel .modal-top h3,
.modal-panel,
.modal-panel *{
  color:var(--ink) !important;
}

/* Keep close icon visible (avoid forcing it to black if it's drawn with borders) */
.modal-panel .close-btn .x{
  background: transparent !important;
}

/* Make the modal BOOK button match the header BOOK (gold gradient) */
#modalBookBtn{
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color:#0b0c10 !important;
  border-color: rgba(0,0,0,.15) !important;
  box-shadow: 0 14px 30px rgba(199,164,90,.22) !important;
}
#modalBookBtn:hover{
  filter: brightness(1.02) !important;
  box-shadow: 0 18px 44px rgba(199,164,90,.28) !important;
}


/* ===== CA Moroni: room modal text + BOOK button (robust) ===== */
.modal-panel .kv .k,
.modal-panel .kv .v{
  color: #0e0f12 !important;
  -webkit-text-fill-color: #0e0f12 !important;
  font-weight: 600 !important;
}
#modalBookBtn{
  background: linear-gradient(135deg, var(--gold2), var(--gold)) !important;
  color:#0b0c10 !important;
  border-color: rgba(0,0,0,.15) !important;
  box-shadow: 0 14px 30px rgba(199,164,90,.22) !important;
}
#modalBookBtn:hover{
  filter: brightness(1.02) !important;
  box-shadow: 0 18px 44px rgba(199,164,90,.28) !important;
}
