:root{
  --bg:#0d1714;
  --bg-2:#14231f;
  --panel:#173129;
  --panel-2:#1b3c33;
  --line:rgba(244, 205, 110, 0.26);
  --gold:#f2c85b;
  --gold-2:#ffe39a;
  --mint:#9af3d9;
  --mint-2:#57d8b0;
  --teal:#4ecbb3;
  --cream:#fff8e8;
  --text:#fff8e8;
  --muted:#d7e7df;
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:24px;
  --radius-sm:16px;
  --container:1200px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  background:var(--bg);
  color:var(--text);
  position:relative;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.site-bg{
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(7,14,12,0.68), rgba(7,14,12,0.82)),
    url("https://res.cloudinary.com/dcplldrsy/image/upload/v1773592535/banner_jer5vo.jpg") center top / cover no-repeat,
    radial-gradient(circle at top left, rgba(154,243,217,.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255,227,154,.12), transparent 30%),
    linear-gradient(180deg, #0c1714 0%, #13211d 35%, #0b1512 100%);
  z-index:-2;
}

.site-overlay{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size:32px 32px;
  z-index:-1;
  opacity:.25;
  pointer-events:none;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(12px);
  background:rgba(5,10,9,.78);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  width:92px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 20px rgba(255,220,120,.15));
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav a{
  color:var(--text);
  font-weight:600;
  font-size:15px;
  letter-spacing:.03em;
  position:relative;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:linear-gradient(90deg, var(--gold), var(--mint));
  transition:width .28s ease;
}

.nav a:hover::after{
  width:100%;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
  width:48px;
  height:48px;
  padding:0;
}

.nav-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px auto;
  border-radius:999px;
}

.hero{
  padding:52px 0 36px;
}

.hero-banner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
  background:
    linear-gradient(135deg, rgba(25,55,47,.80), rgba(12,25,22,.72));
  border:1px solid rgba(255, 227, 154, 0.18);
  border-radius:32px;
  padding:34px;
  box-shadow:0 24px 70px rgba(0,0,0,.32);
  position:relative;
  overflow:hidden;
}

.hero-banner::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 12% 18%, rgba(154,243,217,.18), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(255,227,154,.14), transparent 22%),
    radial-gradient(circle at 55% 72%, rgba(87,216,176,.14), transparent 26%);
  pointer-events:none;
}

.hero-left,
.hero-right{
  position:relative;
  z-index:1;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  color:var(--gold-2);
  background:rgba(255,255,255,.04);
  font-size:13px;
  margin-bottom:16px;
}

.hero h1{
  margin:0 0 14px;
  font-family:"Lora", serif;
  font-size:clamp(36px, 6vw, 72px);
  line-height:1.03;
  letter-spacing:.04em;
  color:#fff8e8;
  text-shadow:
    0 0 18px rgba(255,227,154,.18),
    0 0 42px rgba(87,216,176,.10);
}

.hero-text{
  margin:0;
  max-width:660px;
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
}

.hero-text{
  margin:0;
  max-width:660px;
  color:#e8f6ef;
  font-size:16px;
  line-height:1.9;
}

.hero-right img{
  width:100%;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  object-fit:cover;
}

.section{
  padding:88px 0;
}

.section-highlight{
  padding-top:42px;
}

.section-head{
  text-align:center;
  max-width:900px;
  margin:0 auto 42px;
}

.section-head.narrow{
  max-width:760px;
}

.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--gold-2);
  font-size:20px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.section-head h2{
  margin:0 0 14px;
  font-family:"Lora", serif;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.2;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.room-card{
  background:
    linear-gradient(180deg, rgba(24,52,44,.92), rgba(11,22,19,.98));
  border:1px solid rgba(255,227,154,.16);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display:flex;
  flex-direction:column;
}

.room-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,227,154,.42);
  box-shadow:0 26px 70px rgba(0,0,0,.42);
}

.room-thumb{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
}

.room-thumb::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:45%;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.68));
}

.room-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}

.room-content{
  padding:20px 20px 22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.room-title{
  margin:0 0 10px;
  font-family:"Lora", serif;
  font-size:24px;
  line-height:1.2;
}

.room-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}

.tag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:var(--gold-2);
  font-size:12px;
  font-weight:600;
}

.room-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
  margin:16px 0;
  color:var(--muted);
  font-size:18px;
}

.room-meta strong{
  color:#fff;
  font-weight:700;
}

.room-excerpt{
  color:var(--muted);
  line-height:1.75;
  font-size:18px;
  min-height:96px;
}

.room-actions{
  display:flex;
  gap:12px;
  margin-top:auto;
  padding-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, #f2c85b, #7ef0cf);
  color:#10201b;
  box-shadow:0 12px 28px rgba(126,240,207,.22);
  animation:bookingPulse 2.6s ease-in-out infinite;
}

.btn-primary span,
.btn-primary{
  position:relative;
  z-index:1;
}

.btn-primary::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:radial-gradient(circle, rgba(255,255,255,.32) 0%, transparent 45%);
  opacity:0;
  transform:scale(.7);
  animation:bookingGlow 2.6s ease-in-out infinite;
  pointer-events:none;
}

@keyframes bookingPulse{
  0%,100%{
    transform:translateY(0) scale(1);
    box-shadow:0 12px 28px rgba(126,240,207,.22);
  }
  50%{
    transform:translateY(-1px) scale(1.03);
    box-shadow:0 18px 36px rgba(242,200,91,.28);
  }
}

@keyframes bookingGlow{
  0%,100%{
    opacity:0;
    transform:scale(.75);
  }
  50%{
    opacity:.55;
    transform:scale(1.08);
  }
}

.btn-outline{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.04);
  color:#fff8e8;
}

.btn-ghost{
  border-color:rgba(242,200,91,.28);
  background:rgba(242,200,91,.07);
  color:#ffe39a;
}

.how-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.how-card{
  padding:28px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(18,37,33,.88), rgba(10,19,17,.98));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.how-number{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-family:"Lora", serif;
  font-size:24px;
  color:#0d1714;
  background:linear-gradient(135deg, var(--gold), var(--mint));
  margin-bottom:18px;
}

.how-card h3{
  margin:0 0 12px;
  font-size:22px;
}

.how-card p{
  margin:0;
  line-height:1.8;
  color:var(--muted);
}

.section-price{
  position:relative;
}

.price-board{
  display:grid;
  grid-template-columns:repeat(2, 1fr); /* Adjusted to 2 columns */
  gap:18px;
}

.price-card{
  position:relative;
  padding:28px 22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(19,41,36,.9), rgba(10,20,17,.98));
  box-shadow:var(--shadow);
  text-align:center;
}

.price-card h3{
  margin:0 0 14px;
  font-size:20px;
}

.price-big{
  font-family:"Lora", serif;
  font-size:34px;
  color:var(--gold-2);
}

.price-card p{
  margin:10px 0 0;
  color:var(--muted);
}

.price-card.featured{
  border-color:rgba(231,197,107,.5);
  transform:translateY(-6px);
}

.featured-tag{
  position:absolute;
  top:14px;
  right:14px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(231,197,107,.14);
  color:var(--gold-2);
  font-size:12px;
  font-weight:700;
  border:1px solid rgba(231,197,107,.28);
}

.price-note{
  margin-top:22px;
  text-align:center;
  color:var(--muted);
  line-height:1.8;
}

.section-stats{
  padding-top:26px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.stat-card{
  padding:28px 20px;
  border-radius:22px;
  text-align:center;
  background:linear-gradient(180deg, rgba(21,39,35,.84), rgba(11,18,16,.98));
  border:1px solid rgba(255,255,255,.06);
}

.stat-number{
  font-family:"Lora", serif;
  font-size:40px;
  color:var(--gold-2);
  margin-bottom:8px;
}

.stat-label{
  color:var(--muted);
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.gallery-item{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#0d1714;
}

.gallery-item img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}

.section-contact{
  padding-top:72px;
}

.contact-wrap{
  display:grid;
  grid-template-columns:1fr .92fr;
  gap:24px;
  align-items:start;
  padding:32px;
  border-radius:30px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(19,39,35,.88), rgba(9,16,14,.98));
  box-shadow:var(--shadow);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.footer-brand img{
  width:90px;
  flex:0 0 auto;
}

.footer-brand h2{
  margin:0;
  font-family:"Lora", serif;
  font-size:34px;
}

.contact-intro{
  margin:0 0 26px;
  color:var(--muted);
  line-height:1.8;
}

.contact-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-columns h3,
.map-card h3{
  margin:0 0 12px;
  font-size:20px;
}

.contact-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.socials a{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-weight:600;
}

.map-card{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06);
}

.map-card p{
  margin:0 0 16px;
  color:var(--muted);
}

.booking-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.map-embed{
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

.map-embed iframe{
  display:block;
  width:100%;
  height:320px;
  border:0;
}

.floating-contact{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:90;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.float-circle{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, #20a4ff, #0c72d9);
  color:#fff;
  box-shadow:0 12px 28px rgba(12,114,217,.35);
  font-size:24px;
  font-weight:800;
}

.float-pill{
  min-height:48px;
  padding:0 16px;
  border-radius:999px;
  display:flex;
  align-items:center;
  background:linear-gradient(135deg, #2196f3, #1467cc);
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 24px rgba(20,103,204,.28);
}

.modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
}

.modal.active{
  display:block;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(4,10,9,.72);
  backdrop-filter:blur(10px);
}

.modal-dialog{
  position:relative;
  width:min(1120px, calc(100% - 32px));
  max-height:calc(100vh - 28px);
  margin:14px auto;
  overflow:auto;
  border-radius:30px;
  border:1px solid rgba(154,243,217,.16);
  background:
    linear-gradient(rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 80% 70%, rgba(242,200,91,.08), transparent 24%),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.018) 0px,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 8px
    ),
    linear-gradient(135deg, rgba(20,58,49,.97), rgba(9,24,21,.98));
  box-shadow:
    0 30px 80px rgba(0,0,0,.50),
    inset 0 0 0 1px rgba(255,255,255,.04);
  color:#ecfbf4;
}

/* thanh trục trên dưới */
.modal-dialog::before,
.modal-dialog::after{
  content:"";
  position:absolute;
  left:26px;
  right:26px;
  height:14px;
  border-radius:999px;
  background:linear-gradient(180deg, #c79d49, #7a5522);
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,.16),
    0 4px 10px rgba(0,0,0,.18);
  z-index:2;
}

.modal-dialog::before{ top:12px; }
.modal-dialog::after{ bottom:12px; }

.modal.active .modal-dialog{
  animation:scrollOpen .42s ease;
}

@keyframes scrollOpen{
  0%{
    opacity:0;
    transform:translateY(24px) scale(.98);
    filter:blur(4px);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

.modal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:#ffe39a;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
  z-index:5;
}

.modal-body{
  position:relative;
  padding:38px 24px 34px;
  z-index:3;
}

.modal-body::before{
  content:"";
  position:absolute;
  inset:20px 16px;
  border-radius:24px;
  background:
    linear-gradient(rgba(255,255,255,.02), rgba(255,255,255,.01)),
    linear-gradient(135deg, rgba(28,72,60,.92), rgba(11,30,26,.95));
  border:1px solid rgba(242,200,91,.14);
  z-index:-1;
}

.modal-body::after{
  content:"";
  position:absolute;
  inset:28px 24px;
  border-radius:18px;
  border:1px solid rgba(242,200,91,.10);
  pointer-events:none;
}

.modal-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:20px;
  align-items:start;
}

.modal-image{
  position:sticky;
  top:0;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(242,200,91,.18);
  box-shadow:0 12px 24px rgba(0,0,0,.24);
  background:#0d1714;
}

.modal-image img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}

.modal-panel{
  position:relative;
  padding:4px 4px 0 0;
}

.modal-panel::before{
  content:"Chiếu thư Hồn Cổ";
  display:inline-block;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(242,200,91,.08);
  border:1px solid rgba(242,200,91,.16);
  color:#ffe39a;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.modal-title{
  margin:0 0 8px;
  font-family:"Lora", serif;
  font-size:32px;
  line-height:1.1;
  color:#fff4cf;
}

.modal-sub{
  margin:0 0 12px;
  color:#9af3d9;
  font-weight:700;
  font-size:14px;
}

.modal-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}

.modal-tags .tag{
  border:1px solid rgba(154,243,217,.14);
  background:rgba(154,243,217,.06);
  color:#d8fff1;
  font-size:11px;
}

.story-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

.story-block{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  width: 200%; /* Doubled the width of the story-block */
  box-sizing: border-box; /* Ensures padding and borders are included in the width */
  overflow-x: auto; /* Allows horizontal scrolling if content overflows */
}

.story-block h4{
  margin:0 0 8px;
  font-size:14px;
  color:#ffe39a;
}

.story-block p{
  margin:0;
  color:#ddf2ea;
  line-height:1.7;
  font-size:16px;
}

.details-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
  margin:12px 0 14px;
}

.detail-box{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  min-height:78px;
}

.detail-box strong{
  display:block;
  color:#ffe39a;
  margin-bottom:4px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.detail-box span{
  color:#f3fff9;
  line-height:1.6;
  font-size:13px;
  display:block;
}

.modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.seal-mark{
  position:absolute;
  top:8px;
  right:14px;
  width:74px;
  height:74px;
  border:3px solid rgba(168,40,27,.55);
  color:rgba(168,40,27,.75);
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  transform:rotate(-8deg);
  opacity:.85;
  pointer-events:none;
}

@media (max-width: 1100px){
  .modal-layout{
    grid-template-columns:280px 1fr;
  }

  .story-wrap{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .modal-dialog{
    width:min(100%, calc(100% - 16px));
    max-height:calc(100vh - 16px);
    margin:8px auto;
    border-radius:22px;
  }

  .modal-body{
    padding:34px 14px 24px;
  }

  .modal-layout{
    grid-template-columns:1fr;
    gap:16px;
  }

  .modal-image{
    position:relative;
  }

  .modal-title{
    font-size:26px;
  }

  .details-grid{
    grid-template-columns:1fr 1fr;
  }

  .story-block p,
  .detail-box span{
    font-size:12px;
  }

  .seal-mark{
    width:62px;
    height:62px;
    font-size:10px;
  }
}

body::before,
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
}

body::before{
  background:
    radial-gradient(circle at 20% 25%, rgba(255,226,146,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 35%, rgba(154,243,217,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 70%, rgba(255,226,146,.06) 0 1.5px, transparent 2px),
    radial-gradient(circle at 85% 80%, rgba(154,243,217,.05) 0 2px, transparent 3px);
  background-size: 280px 280px, 360px 360px, 300px 300px, 420px 420px;
  opacity:.7;
  animation: dustFloat 20s linear infinite;
}

body::after{
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,.03) 40%, transparent 60%);
  transform:translateX(-120%);
  animation: lightSweep 14s ease-in-out infinite;
}

@keyframes dustFloat{
  0%{ transform:translateY(0) translateX(0); }
  50%{ transform:translateY(-12px) translateX(8px); }
  100%{ transform:translateY(0) translateX(0); }
}

@keyframes lightSweep{
  0%{ transform:translateX(-120%); opacity:0; }
  15%{ opacity:.7; }
  50%{ transform:translateX(120%); opacity:.35; }
  100%{ transform:translateX(120%); opacity:0; }
}

.section-head h2::after{
  content:"✦ ✦ ✦";
  display:block;
  margin:14px auto 0;
  font-size:16px;
  letter-spacing:10px;
  color:rgba(255,227,154,.7);
}

.hero-badge{
  box-shadow:0 0 0 1px rgba(255,255,255,.04), 0 8px 20px rgba(0,0,0,.18);
  backdrop-filter:blur(6px);
}

.hero h1{
  position:relative;
}

.hero h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:180px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--gold), var(--mint), transparent);
}

.room-card{
  position:relative;
}

.room-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:24px;
  padding:1px;
  background:linear-gradient(135deg, rgba(255,227,154,.0), rgba(255,227,154,.25), rgba(154,243,217,.22), rgba(255,227,154,.0));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  opacity:.45;
}

.room-thumb img{
  transition:transform .5s ease;
}

.room-card:hover .room-thumb img{
  transform:scale(1.07);
}

.room-title{
  transition:color .25s ease, transform .25s ease;
}

.room-card:hover .room-title{
  color:var(--gold-2);
  transform:translateX(2px);
}

.btn{
  position:relative;
  overflow:hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.28) 50%, transparent 65%);
  transform:translateX(-140%) rotate(8deg);
  transition:transform .7s ease;
}

.btn:hover::after{
  transform:translateX(140%) rotate(8deg);
}

.modal-dialog{
  transform-origin:center top;
}


@keyframes scrollOpen{
  0%{
    opacity:0;
    transform:translateY(24px) scaleY(.86) scaleX(.98);
    filter:blur(4px);
  }
  60%{
    opacity:1;
    transform:translateY(-2px) scaleY(1.02) scaleX(1);
    filter:blur(0);
  }
  100%{
    opacity:1;
    transform:translateY(0) scaleY(1) scaleX(1);
    filter:blur(0);
  }
}

.modal-panel{
  position:relative;
}

.modal-panel .seal-mark{
  position:absolute;
  top:8px;
  right:16px;
  width:74px;
  height:74px;
  border:3px solid rgba(168,40,27,.55);
  color:rgba(168,40,27,.72);
  border-radius:8px;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
  transform:rotate(-8deg);
  opacity:.85;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

.hero-banner::after{
  content:"";
  position:absolute;
  inset:auto -20% -30% auto;
  width:380px;
  height:380px;
  background:radial-gradient(circle, rgba(154,243,217,.16), transparent 65%);
  filter:blur(18px);
  animation:orbFloat 8s ease-in-out infinite;
  pointer-events:none;
}

@keyframes orbFloat{
  0%{ transform:translate(0, 0) scale(1); }
  50%{ transform:translate(-16px, -12px) scale(1.05); }
  100%{ transform:translate(0, 0) scale(1); }
}

.float-pill{
  animation:pillPulse 3.2s ease-in-out infinite;
}

.float-pill:nth-child(2){ animation-delay:.2s; }
.float-pill:nth-child(3){ animation-delay:.5s; }
.float-pill:nth-child(4){ animation-delay:.8s; }

@keyframes pillPulse{
  0%,100%{ transform:translateX(0); }
  50%{ transform:translateX(-4px); }
}

.brand img{
  animation:logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow{
  0%,100%{ filter:drop-shadow(0 0 14px rgba(255,220,120,.12)); }
  50%{ filter:drop-shadow(0 0 24px rgba(154,243,217,.22)); }
}

.mystic-clouds{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  overflow:hidden;
}

.cloud{
  position:absolute;
  left:-40vw;
  border-radius:999px;
  opacity:.55;
  filter:blur(8px);
  box-shadow: 0 0 40px rgba(255, 240, 210, 0.12);
}

.cloud::before,
.cloud::after{
  content:"";
  position:absolute;
  border-radius:999px;
  background:inherit;
}

/* Mây 1 */
.cloud-1{
  top:8%;
  width:420px;
  height:120px;
  background:
    radial-gradient(circle at 30% 50%, rgba(255,245,220,.65) 0 28%, transparent 58%),
    radial-gradient(circle at 55% 42%, rgba(220,255,245,.42) 0 24%, transparent 56%),
    radial-gradient(circle at 72% 52%, rgba(255,235,180,.42) 0 22%, transparent 54%);
  animation: cloudDrift1 22s linear infinite;
}

.cloud-1::before{
  width:180px;
  height:100px;
  left:28px;
  top:-22px;
}

.cloud-1::after{
  width:210px;
  height:104px;
  right:26px;
  top:-14px;
}

/* Mây 2 */
.cloud-2{
  top:18%;
  width:360px;
  height:100px;
  background:
    radial-gradient(circle at 28% 50%, rgba(255,243,208,.58) 0 28%, transparent 58%),
    radial-gradient(circle at 56% 44%, rgba(154,243,217,.34) 0 22%, transparent 54%),
    radial-gradient(circle at 76% 52%, rgba(255,255,255,.34) 0 20%, transparent 52%);
  animation: cloudDrift2 18s linear infinite 5s;
}

.cloud-2::before{
  width:150px;
  height:84px;
  left:20px;
  top:-16px;
}

.cloud-2::after{
  width:170px;
  height:86px;
  right:20px;
  top:-12px;
}

/* Mây 3 */
.cloud-3{
  top:28%;
  width:500px;
  height:130px;
  background:
    radial-gradient(circle at 24% 52%, rgba(255,245,220,.52) 0 28%, transparent 58%),
    radial-gradient(circle at 50% 46%, rgba(154,243,217,.30) 0 22%, transparent 54%),
    radial-gradient(circle at 72% 50%, rgba(255,227,154,.34) 0 22%, transparent 56%);
  animation: cloudDrift3 26s linear infinite 10s;
}

.cloud-3::before{
  width:190px;
  height:96px;
  left:48px;
  top:-20px;
}

.cloud-3::after{
  width:220px;
  height:104px;
  right:40px;
  top:-18px;
}

@keyframes cloudDrift1{
  0%{
    transform:translateX(0);
    opacity:0;
  }
  8%{
    opacity:.45;
  }
  50%{
    transform:translateX(85vw) translateY(6px);
    opacity:.55;
  }
  100%{
    transform:translateX(150vw) translateY(-4px);
    opacity:0;
  }
}

@keyframes cloudDrift2{
  0%{
    transform:translateX(0);
    opacity:0;
  }
  10%{
    opacity:.4;
  }
  50%{
    transform:translateX(90vw) translateY(-8px);
    opacity:.5;
  }
  100%{
    transform:translateX(150vw) translateY(4px);
    opacity:0;
  }
}

@keyframes cloudDrift3{
  0%{
    transform:translateX(0);
    opacity:0;
  }
  8%{
    opacity:.38;
  }
  50%{
    transform:translateX(95vw) translateY(10px);
    opacity:.48;
  }
  100%{
    transform:translateX(155vw) translateY(-6px);
    opacity:0;
  }
}

.floating-leaves{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:2;
  overflow:hidden;
}
/* ===== TRÚC MẢNH - NHẠT - HỢP NỀN HỒN CỔ ===== */
.bamboo-scene{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:4;
  overflow:hidden;
}

.bamboo-clump{
  position:absolute;
  left:-18px;
  bottom:-8px;
  width:240px;
  height:100vh;
  opacity:.72;
  filter:drop-shadow(0 0 18px rgba(154,243,217,.05));
}

/* thân trúc mảnh hơn */
.bamboo-stalk{
  position:absolute;
  bottom:0;
  width:12px;
  border-radius:999px;
  background:
    linear-gradient(90deg,
      rgba(220,255,244,.16) 0%,
      rgba(154,243,217,.34) 22%,
      rgba(76,168,135,.42) 52%,
      rgba(27,79,63,.52) 100%
    );
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,.14),
    inset -1px 0 0 rgba(0,0,0,.12),
    0 0 10px rgba(154,243,217,.04);
  transform-origin:bottom center;
  animation:bambooSwaySoft 7s ease-in-out infinite;
}

.bamboo-stalk::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0 34px,
      rgba(228,255,247,.10) 34px 35px,
      rgba(18,56,45,.22) 35px 38px,
      transparent 38px 72px
    );
}

/* 4 thân chính */
.stalk-1{
  left:20px;
  height:94vh;
  transform:rotate(-2deg);
  animation-delay:0s;
}

.stalk-2{
  left:48px;
  height:82vh;
  width:10px;
  transform:rotate(2deg);
  animation-delay:.8s;
}

.stalk-3{
  left:78px;
  height:98vh;
  width:13px;
  transform:rotate(-3deg);
  animation-delay:1.5s;
}

.stalk-4{
  left:108px;
  height:76vh;
  width:10px;
  transform:rotate(3deg);
  animation-delay:.3s;
}

/* lá trúc mảnh, dài, nhạt */
.bamboo-leaf{
  position:absolute;
  width:96px;
  height:14px;
  border-radius:100% 0 100% 0;
  background:linear-gradient(
    90deg,
    rgba(210,255,242,.72) 0%,
    rgba(154,243,217,.54) 26%,
    rgba(79,170,136,.48) 58%,
    rgba(24,78,61,.34) 100%
  );
  box-shadow:0 0 8px rgba(154,243,217,.04);
  transform-origin:left center;
  opacity:.82;
  animation:leafRustleSoft 5.2s ease-in-out infinite;
}

.bamboo-leaf::after{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  top:50%;
  height:1px;
  background:rgba(238,255,250,.16);
  transform:translateY(-50%);
}

/* nhiều lá hơn, xếp mảnh */
.leaf-a { left:18px;  bottom:82%; --r:-16deg; transform:rotate(var(--r)); animation-delay:.1s; }
.leaf-b { left:24px;  bottom:78%; --r:-8deg;  transform:rotate(var(--r)); animation-delay:.8s; }
.leaf-c { left:32px;  bottom:73%; --r:8deg;   transform:rotate(var(--r)); animation-delay:1.4s; }

.leaf-d { left:48px;  bottom:86%; --r:-20deg; transform:rotate(var(--r)); animation-delay:.4s; }
.leaf-e { left:56px;  bottom:80%; --r:-10deg; transform:rotate(var(--r)); animation-delay:1.1s; }
.leaf-f { left:64px;  bottom:74%; --r:10deg;  transform:rotate(var(--r)); animation-delay:1.8s; }

.leaf-g { left:82px;  bottom:90%; --r:-18deg; transform:rotate(var(--r)); animation-delay:.6s; }
.leaf-h { left:90px;  bottom:84%; --r:-6deg;  transform:rotate(var(--r)); animation-delay:1.5s; }
.leaf-i { left:98px;  bottom:78%; --r:12deg;  transform:rotate(var(--r)); animation-delay:2.1s; }

/* thêm lá mới cho dày hơn */
.leaf-j { left:112px; bottom:88%; --r:-16deg; transform:rotate(var(--r)); animation-delay:.3s; }
.leaf-k { left:120px; bottom:82%; --r:-4deg;  transform:rotate(var(--r)); animation-delay:1.2s; }
.leaf-l { left:128px; bottom:76%; --r:14deg;  transform:rotate(var(--r)); animation-delay:2s; }

.leaf-m { left:142px; bottom:72%; --r:-12deg; transform:rotate(var(--r)); animation-delay:.9s; }
.leaf-n { left:150px; bottom:66%; --r:8deg;   transform:rotate(var(--r)); animation-delay:1.7s; }
.leaf-o { left:158px; bottom:60%; --r:18deg;  transform:rotate(var(--r)); animation-delay:2.4s; }

/* lá bay nhẹ */
.flying-leaf{
  position:absolute;
  left:88px;
  bottom:24%;
  width:34px;
  height:9px;
  border-radius:100% 0 100% 0;
  background:linear-gradient(
    90deg,
    rgba(220,255,245,.86),
    rgba(154,243,217,.62),
    rgba(48,132,103,.48)
  );
  box-shadow:0 0 6px rgba(154,243,217,.05);
  opacity:0;
  transform-origin:center;
}

.flying-leaf::after{
  content:"";
  position:absolute;
  left:5px;
  right:5px;
  top:50%;
  height:1px;
  background:rgba(255,255,255,.12);
  transform:translateY(-50%);
}

.fly-1{ animation:leafFlySoft1 10s linear infinite; }
.fly-2{ animation:leafFlySoft2 12s linear infinite 2s; }
.fly-3{ animation:leafFlySoft3 9s linear infinite 4s; }
.fly-4{ animation:leafFlySoft2 11s linear infinite 6s; }
.fly-5{ animation:leafFlySoft1 10.5s linear infinite 7.5s; }

@keyframes bambooSwaySoft{
  0%,100%{ transform:rotate(-2deg) translateY(0); }
  50%{ transform:rotate(1.5deg) translateY(-1px); }
}

@keyframes leafRustleSoft{
  0%,100%{ transform:rotate(var(--r)) translateX(0) scale(1); }
  25%{ transform:rotate(calc(var(--r) + 3deg)) translateX(2px); }
  50%{ transform:rotate(calc(var(--r) - 2deg)) translateX(5px) scale(1.02); }
  75%{ transform:rotate(calc(var(--r) + 1deg)) translateX(2px); }
}

@keyframes leafFlySoft1{
  0%{
    transform:translate(0,0) rotate(8deg) scale(.92);
    opacity:0;
  }
  10%{ opacity:.5; }
  35%{
    transform:translate(24vw,-5vh) rotate(90deg) scale(1);
  }
  70%{
    transform:translate(58vw,4vh) rotate(220deg) scale(.9);
    opacity:.42;
  }
  100%{
    transform:translate(88vw,-3vh) rotate(320deg) scale(.76);
    opacity:0;
  }
}

@keyframes leafFlySoft2{
  0%{
    transform:translate(0,0) rotate(-10deg) scale(1);
    opacity:0;
  }
  12%{ opacity:.46; }
  42%{
    transform:translate(28vw,3vh) rotate(100deg) scale(.95);
  }
  72%{
    transform:translate(62vw,-6vh) rotate(210deg) scale(.86);
    opacity:.38;
  }
  100%{
    transform:translate(92vw,2vh) rotate(310deg) scale(.72);
    opacity:0;
  }
}

@keyframes leafFlySoft3{
  0%{
    transform:translate(0,0) rotate(0deg) scale(.9);
    opacity:0;
  }
  10%{ opacity:.42; }
  30%{
    transform:translate(18vw,-6vh) rotate(80deg) scale(.98);
  }
  60%{
    transform:translate(46vw,2vh) rotate(170deg) scale(.9);
    opacity:.36;
  }
  100%{
    transform:translate(84vw,-4vh) rotate(280deg) scale(.74);
    opacity:0;
  }
}

@media (max-width: 760px){
  .bamboo-clump{
    width:150px;
    opacity:.58;
  }

  .bamboo-stalk{
    width:8px;
  }

  .bamboo-leaf{
    width:58px;
    height:10px;
  }

  .flying-leaf{
    width:22px;
    height:7px;
  }
}

.opening-intro{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at center, rgba(25,55,47,.24), transparent 30%),
    linear-gradient(180deg, rgba(5,10,9,.96), rgba(5,10,9,.98));
  overflow:hidden;
  transition:opacity .8s ease, visibility .8s ease;
}

.opening-intro.hide{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.opening-glow{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(242,200,91,.22), rgba(154,243,217,.10), transparent 68%);
  filter:blur(22px);
  animation:introGlowPulse 2.2s ease-in-out infinite;
}

.opening-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:24px;
  animation:introRise .9s ease;
}

.opening-content img{
  width:120px;
  margin:0 auto 18px;
  filter:drop-shadow(0 0 20px rgba(255,227,154,.22));
  animation:introLogoFloat 2.2s ease-in-out infinite;
}

.opening-rune{
  margin-bottom:12px;
  color:rgba(255,227,154,.78);
  letter-spacing:10px;
  font-size:18px;
}

.opening-content h2{
  margin:0 0 10px;
  font-family:"Lora", serif;
  font-size:clamp(28px, 4vw, 48px);
  letter-spacing:.12em;
  color:#fff4cf;
  text-shadow:0 0 18px rgba(255,227,154,.18);
}

.opening-content p{
  margin:0;
  font-size:16px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#d7f7ea;
  opacity:.92;
}

.opening-intro::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:linear-gradient(120deg, transparent 35%, rgba(255,255,255,.10) 50%, transparent 65%);
  transform:translateX(-120%) rotate(8deg);
  animation:introLightSweep 2.2s ease-in-out infinite;
}

@keyframes introRise{
  0%{
    opacity:0;
    transform:translateY(18px) scale(.98);
    filter:blur(4px);
  }
  100%{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

@keyframes introGlowPulse{
  0%,100%{
    transform:scale(.94);
    opacity:.7;
  }
  50%{
    transform:scale(1.08);
    opacity:1;
  }
}

@keyframes introLogoFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}

@keyframes introLightSweep{
  0%{
    transform:translateX(-120%) rotate(8deg);
    opacity:0;
  }
  25%{
    opacity:.7;
  }
  60%{
    transform:translateX(120%) rotate(8deg);
    opacity:.28;
  }
  100%{
    transform:translateX(120%) rotate(8deg);
    opacity:0;
  }
}
