/* होटल जय लक्ष्मी & लज — dark & gold divine theme */
:root {
  --bg: #0a0a0c;
  --bg2: #121216;
  --card: #17171d;
  --card2: #1e1e26;
  --gold: #d4a94e;
  --gold2: #f0d48a;
  --gold-dim: #8a6d33;
  --text: #f2ecdf;
  --muted: #9b937f;
  --green: #4caf7d;
  --red: #e05c5c;
  --blue: #5c9de0;
  --radius: 14px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Mukta", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); min-height: 100vh;
}
img { max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea {
  font-family: var(--font-body); background: var(--bg2); color: var(--text);
  border: 1px solid #2c2c36; border-radius: 8px; padding: 10px 12px; font-size: 15px;
  width: 100%; outline: none; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
label { font-size: 13px; color: var(--muted); display: block; margin: 10px 0 4px; }

/* ---------- password show/hide toggle ---------- */
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 44px; }
.pw-eye {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: 4px 6px; font-size: 17px; line-height: 1;
  color: var(--muted); cursor: pointer; border-radius: 6px; transition: color .18s, background .18s;
}
.pw-eye:hover { color: var(--gold2); background: rgba(212,169,78,.1); }

.boot-splash { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.boot-splash img { width: 110px; border-radius: 50%; animation: pulse 1.6s infinite; }
.boot-splash p { color: var(--gold); font-size: 20px; }
@keyframes pulse { 0%,100%{opacity:.6; transform:scale(1)} 50%{opacity:1; transform:scale(1.05)} }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; border: none; border-radius: 10px;
  padding: 11px 22px; font-size: 15px; font-weight: 600; transition: all .2s;
  background: linear-gradient(135deg, var(--gold), #b8860b); color: #14100a;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,169,78,.35); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.ghost { background: transparent; border: 1px solid var(--gold-dim); color: var(--gold2); }
.btn.ghost:hover { border-color: var(--gold); box-shadow: none; }
.btn.danger { background: linear-gradient(135deg, #e05c5c, #a33030); color: #fff; }
.btn.green { background: linear-gradient(135deg, #4caf7d, #2c7a52); color: #fff; }
.btn.blue { background: linear-gradient(135deg, #5c9de0, #34619c); color: #fff; }
.btn.sm { padding: 6px 14px; font-size: 13px; border-radius: 8px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
  padding: 10px 4vw; background: rgba(10,10,12,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,169,78,.25);
}
.nav .brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.nav .brand img { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold-dim); }
.nav .brand .t1 { font-family: var(--font-display); font-size: 20px; color: var(--gold2); line-height: 1.1; }
.nav .brand .t2 { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.nav .links { display: flex; gap: 4px; flex-wrap: wrap; }
.nav .links a, .nav .links button {
  background: none; border: none; color: var(--text); font-size: 14.5px; padding: 8px 13px;
  border-radius: 8px; transition: all .2s; font-weight: 500;
}
.nav .links a:hover { background: rgba(212,169,78,.12); color: var(--gold2); }
.nav .links a.active { background: rgba(212,169,78,.18); color: var(--gold2); }
.cart-pill { position: relative; }
.cart-pill .badge {
  position: absolute; top: -2px; right: 2px; background: var(--red); color: #fff;
  font-size: 10px; min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.hamburger { display: none; background: none; border: 1px solid var(--gold-dim); color: var(--gold); border-radius: 8px; padding: 7px 12px; font-size: 18px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 60px 5vw;
  background:
    radial-gradient(ellipse 60% 45% at 50% 8%, rgba(212,169,78,.16), transparent),
    radial-gradient(ellipse 45% 35% at 20% 85%, rgba(92,60,10,.18), transparent),
    var(--bg);
  overflow: hidden;
}
.hero img.hero-logo {
  width: min(320px, 60vw); border-radius: 24px; margin-bottom: 28px;
  box-shadow: 0 0 80px rgba(212,169,78,.25); animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero h1 { font-family: var(--font-display); font-size: clamp(34px, 6vw, 64px); color: var(--gold2); font-weight: 700; }
.hero h2 { font-size: clamp(16px, 2.4vw, 24px); color: var(--text); font-weight: 400; margin-top: 6px; }
.hero p.tag { color: var(--muted); margin-top: 14px; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; }
.hero .cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }

/* ---------- sections ---------- */
.section { padding: 70px 5vw; max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); color: var(--gold2); text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin: 8px 0 40px; }
.divider { width: 70px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 14px auto; }

.grid { display: grid; gap: 20px; }
.grid.c3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid.c4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

/* ---------- cards ---------- */
.card {
  background: var(--card); border: 1px solid #26262e; border-radius: var(--radius);
  padding: 20px; transition: all .25s;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.room-card { position: relative; overflow: hidden; }
.room-card .room-head { display: flex; justify-content: space-between; align-items: start; }
.room-card .rnum { font-family: var(--font-display); font-size: 30px; color: var(--gold2); }
.room-card .rtype { color: var(--muted); font-size: 14px; }
.room-card .price { font-size: 22px; color: var(--text); font-weight: 700; margin: 12px 0 4px; }
.room-card .price span { font-size: 13px; color: var(--muted); font-weight: 400; }
.room-card .special { font-size: 13.5px; color: var(--gold); min-height: 20px; }
.status-chip {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.status-chip.free { background: rgba(76,175,125,.15); color: var(--green); border: 1px solid rgba(76,175,125,.4); }
.status-chip.booked { background: rgba(224,92,92,.15); color: var(--red); border: 1px solid rgba(224,92,92,.4); }

.menu-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.menu-card .ph { height: 170px; background: var(--bg2); display:flex; align-items:center; justify-content:center; overflow: hidden; }
.menu-card .ph img { width: 100%; height: 100%; object-fit: cover; }
.menu-card .ph .noimg { font-size: 44px; opacity: .3; }
.menu-card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.menu-card .fname { font-size: 17px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.veg-dot { width: 15px; height: 15px; border-radius: 3px; border: 1.5px solid; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.veg-dot::after { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.veg-dot.veg { border-color: #2e9e5b; } .veg-dot.veg::after { background: #2e9e5b; }
.veg-dot.nonveg { border-color: #b3382c; } .veg-dot.nonveg::after { background: #b3382c; }
.menu-card .fprice { color: var(--gold2); font-size: 18px; font-weight: 700; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.qty-row button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--gold-dim); background: none; color: var(--gold2); font-size: 17px; }
.qty-row .q { min-width: 24px; text-align: center; font-weight: 700; }

/* ---------- feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.feature { text-align: center; padding: 26px 16px; position: relative; }
.feature .ic { font-size: 34px; }
.feature h4 { font-family: var(--font-display); color: var(--gold2); font-size: 20px; margin: 10px 0 6px; }
.feature p { color: var(--muted); font-size: 14px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(212,169,78,.25); padding: 40px 5vw 26px; text-align: center;
  background: var(--bg2); margin-top: 60px;
}
footer .fbrand { font-family: var(--font-display); font-size: 24px; color: var(--gold2); }
footer .fnav { display: flex; gap: 20px; justify-content: center; margin: 18px 0; flex-wrap: wrap; }
footer .fnav a { color: var(--muted); font-size: 14px; }
footer .fnav a:hover { color: var(--gold2); }
footer .credit { color: var(--muted); font-size: 13.5px; border-top: 1px dashed #2c2c36; padding-top: 18px; margin-top: 12px; }
footer .credit b { color: var(--gold); }

/* ---------- modal ---------- */
.modal-back {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px); animation: fadein .18s;
}
@keyframes fadein { from{opacity:0} to{opacity:1} }
.modal {
  background: var(--card); border: 1px solid var(--gold-dim); border-radius: 16px;
  width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto; padding: 26px;
  animation: slideup .22s;
}
@keyframes slideup { from{transform:translateY(24px); opacity:0} to{transform:none; opacity:1} }
.modal-wide { max-width: 760px; }
@media (prefers-reduced-motion: reduce) { .modal-back, .modal { animation: none; } }
.modal h3 { font-family: var(--font-display); color: var(--gold2); font-size: 24px; margin-bottom: 6px; }
.modal .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.modal-actions { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }

/* ---------- toast / notification ---------- */
.toasts { position: fixed; right: 18px; top: 74px; z-index: 200; display: flex; flex-direction: column; gap: 10px; width: 330px; max-width: 90vw; }
.toast {
  background: var(--card2); border: 1px solid var(--gold); border-radius: 12px; padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5); animation: slidein .3s;
}
.toast b { color: var(--gold2); display: block; margin-bottom: 3px; }
.toast p { font-size: 13.5px; color: var(--text); }
@keyframes slidein { from{transform:translateX(40px); opacity:0} to{transform:none; opacity:1} }

/* ---------- panel layout (admin/kitchen/reception) ---------- */
.panel { display: flex; min-height: calc(100vh - 67px); }
.side {
  width: 230px; flex: none; background: var(--bg2); border-right: 1px solid #22222a;
  padding: 18px 12px; display: flex; flex-direction: column; gap: 4px;
}
.side button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: none; border: none; color: var(--text); font-size: 14.5px;
  padding: 11px 14px; border-radius: 10px; transition: all .15s;
}
.side button:hover { background: rgba(212,169,78,.1); }
.side button.active { background: rgba(212,169,78,.18); color: var(--gold2); font-weight: 600; }
.side .sep { border-top: 1px dashed #2c2c36; margin: 10px 0; }
.main { flex: 1; padding: 26px 28px; min-width: 0; }
.main h2.pg { font-family: var(--font-display); color: var(--gold2); font-size: 28px; margin-bottom: 4px; }
.main .pg-sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }

/* ---------- tables ---------- */
.tbl-wrap { overflow-x: auto; border: 1px solid #26262e; border-radius: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
th { text-align: left; padding: 12px 14px; background: var(--bg2); color: var(--gold); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .6px; white-space: nowrap; }
td { padding: 11px 14px; border-top: 1px solid #22222a; vertical-align: middle; }
tr:hover td { background: rgba(212,169,78,.04); }
td img.thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; margin-bottom: 26px; }
.stat { background: var(--card); border: 1px solid #26262e; border-radius: 12px; padding: 18px; }
.stat .v { font-size: 26px; font-weight: 700; color: var(--gold2); }
.stat .l { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- kitchen board ---------- */
.kboard { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.korder { border-left: 4px solid var(--gold); }
.korder.making { border-left-color: var(--blue); }
.korder.ready { border-left-color: var(--green); }
.korder .khead { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.korder .kno { font-family: var(--font-display); font-size: 24px; color: var(--gold2); }
.korder ul { list-style: none; margin: 8px 0; }
.korder li { padding: 5px 0; border-bottom: 1px dashed #2c2c36; font-size: 14.5px; display: flex; justify-content: space-between; }
.korder .kfoot { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }

/* ---------- pos ---------- */
.pos { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; align-items: start; }
.pos-cart { position: sticky; top: 84px; }
.pos-cart .line { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px dashed #2c2c36; font-size: 14px; }
.pos-cart .total { display: flex; justify-content: space-between; font-size: 19px; font-weight: 700; color: var(--gold2); padding-top: 12px; }

/* ---------- login ---------- */
.login-wrap { min-height: 88vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.login-card { width: 100%; max-width: 400px; text-align: center; }
.login-card img { width: 90px; border-radius: 50%; margin-bottom: 12px; border: 2px solid var(--gold-dim); }

/* ---------- checkout / bill ---------- */
.bill-paper { background: #fff; color: #111; border-radius: 10px; padding: 22px; font-family: "Courier New", monospace; font-size: 13px; }
.bill-paper h4 { text-align: center; font-size: 16px; }
.bill-paper .c { text-align: center; }
.bill-paper hr { border: none; border-top: 1px dashed #555; margin: 8px 0; }
.bill-paper table { min-width: 0; font-size: 12.5px; }
.bill-paper th, .bill-paper td { padding: 4px 6px; color: #111; background: none; border: none; }
.bill-paper .tot { font-weight: 700; font-size: 15px; }
.qr-box { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 16px; background: #fff; border-radius: 12px; width: fit-content; margin: 14px auto; }
.qr-box p { color: #222; font-size: 13px; font-weight: 600; }

/* ---------- print ---------- */
.print-area { display: none; }
@media print {
  body * { visibility: hidden; }
  .print-area, .print-area * { visibility: visible; }
  .print-area { display: block; position: absolute; left: 0; top: 0; width: 100%; background: #fff; color: #000; }
  .no-print { display: none !important; }
}

/* ---------- helpers ---------- */
.flex { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.spread { justify-content: space-between; }
.muted { color: var(--muted); font-size: 13.5px; }
.gold { color: var(--gold2); }
.green { color: var(--green); } .red { color: var(--red); }
.mt { margin-top: 16px; } .mb { margin-bottom: 16px; }
.empty { text-align: center; color: var(--muted); padding: 50px 20px; font-size: 15px; }
.pill { font-size: 12px; padding: 3px 10px; border-radius: 12px; background: var(--bg2); border: 1px solid #2c2c36; white-space: nowrap; }
.pill.p-pending { color: var(--gold); border-color: var(--gold-dim); }
.pill.p-received { color: var(--blue); }
.pill.p-making { color: var(--blue); border-color: var(--blue); }
.pill.p-ready { color: var(--green); border-color: var(--green); }
.pill.p-completed { color: var(--muted); }
.pill.p-cancelled { color: var(--red); }
.avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-dim); }

/* ================= LANDING v2 — cinematic ================= */
::selection { background: rgba(212,169,78,.35); }
html { scrollbar-color: var(--gold-dim) var(--bg); }
body::after { /* film grain */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); will-change: transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.rv-left { transform: translateX(-60px); }
.reveal.rv-right { transform: translateX(60px); }
.reveal.rv-zoom { transform: scale(.86); }
.reveal.in.rv-left, .reveal.in.rv-right, .reveal.in.rv-zoom { transform: none; }

/* hero v2 */
.hero2 { position: relative; height: 106vh; min-height: 640px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero2 .bgwrap { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero2 .bgwrap img, .hero2 .bgwrap .bg-fallback {
  width: 100%; height: 100%; object-fit: cover; display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero2 .bg-fallback { background:
  radial-gradient(ellipse 70% 55% at 50% 30%, rgba(212,169,78,.22), transparent),
  linear-gradient(180deg, #14141a, #0a0a0c); }
@keyframes kenburns { from { transform: scale(1) } to { transform: scale(1.14) } }
.hero2 .shade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,12,.72) 0%, rgba(10,10,12,.35) 40%, rgba(10,10,12,.55) 72%, var(--bg) 100%); }
.hero2 .inner { position: relative; z-index: 2; text-align: center; padding: 0 5vw; max-width: 1000px; }
.hero2 .crest { width: 108px; height: 108px; border-radius: 50%; border: 2px solid rgba(212,169,78,.6);
  box-shadow: 0 0 60px rgba(212,169,78,.35), inset 0 0 24px rgba(0,0,0,.5); margin-bottom: 26px;
  animation: crestfloat 6s ease-in-out infinite; }
@keyframes crestfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero2 .eyebrow { letter-spacing: 6px; font-size: 12px; text-transform: uppercase; color: var(--gold);
  animation: fadedown 1.1s .1s cubic-bezier(.16,1,.3,1) backwards; }
.hero2 h1 { font-family: var(--font-display); font-weight: 700; color: #fdf6e3;
  font-size: clamp(40px, 7.2vw, 88px); line-height: 1.04; margin: 14px 0 6px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6); animation: fadedown 1.1s .25s cubic-bezier(.16,1,.3,1) backwards; }
.hero2 h1 .gold-grad { background: linear-gradient(100deg, #f4dc9a 10%, #caa244 45%, #f8e7b5 70%, #b8860b 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero2 .sub { font-size: clamp(15px, 2vw, 20px); color: rgba(242,236,223,.85);
  animation: fadedown 1.1s .4s cubic-bezier(.16,1,.3,1) backwards; }
.hero2 .cta { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap;
  animation: fadedown 1.1s .55s cubic-bezier(.16,1,.3,1) backwards; }
@keyframes fadedown { from { opacity: 0; transform: translateY(-26px) } to { opacity: 1; transform: none } }
.hero2 .scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; opacity: .8; }
.hero2 .scroll-hint::after { content: ""; display: block; width: 1px; height: 44px; margin: 8px auto 0;
  background: linear-gradient(180deg, var(--gold), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0%{transform:scaleY(0); transform-origin:top} 55%{transform:scaleY(1); transform-origin:top} 56%{transform-origin:bottom} 100%{transform:scaleY(0); transform-origin:bottom} }

.btn.lg { padding: 15px 34px; font-size: 16px; border-radius: 12px; }
.btn.glass { background: rgba(255,255,255,.08); border: 1px solid rgba(212,169,78,.5); color: #fdf6e3; backdrop-filter: blur(8px); }
.btn.glass:hover { background: rgba(212,169,78,.18); box-shadow: none; }

/* marquee strip */
.marquee { overflow: hidden; border-block: 1px solid rgba(212,169,78,.25); padding: 14px 0; background: var(--bg2); }
.marquee .track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: slide 26s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: 18px; color: var(--gold); letter-spacing: 2px; }
@keyframes slide { to { transform: translateX(-50%) } }

/* numbered section heads */
.sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.sec-head .no { font-family: var(--font-display); font-size: 15px; color: var(--gold-dim); letter-spacing: 2px; }
.sec-head h2 { font-family: var(--font-display); font-size: clamp(28px, 4.4vw, 46px); color: var(--gold2); font-weight: 600; }
.sec-lead { color: var(--muted); max-width: 640px; font-size: 16.5px; line-height: 1.75; }

/* 3D tilt cards */
.tilt { transform-style: preserve-3d; transition: transform .18s ease-out, box-shadow .3s; }
.tilt:hover { box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(212,169,78,.35); }
.tilt .pop { transform: translateZ(34px); }

/* stats band */
.band { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1px; background: rgba(212,169,78,.22);
  border-block: 1px solid rgba(212,169,78,.22); }
.band .cell { background: var(--bg); text-align: center; padding: 44px 16px; }
.band .num { font-family: var(--font-display); font-size: clamp(34px, 4.6vw, 52px); color: var(--gold2); font-weight: 700; }
.band .lbl { color: var(--muted); font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 6px; }

/* showcase / gallery */
.showcase { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(212,169,78,.3); }
.showcase img { width: 100%; height: clamp(320px, 56vw, 560px); object-fit: cover; display: block;
  transition: transform 1.4s cubic-bezier(.16,1,.3,1); }
.showcase:hover img { transform: scale(1.07); }
.showcase .cap { position: absolute; inset: auto 0 0 0; padding: 70px 28px 22px;
  background: linear-gradient(180deg, transparent, rgba(6,6,8,.9)); }
.showcase .cap h3 { font-family: var(--font-display); font-size: 26px; color: #fdf6e3; }
.showcase .cap p { color: var(--gold); font-size: 13.5px; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

/* split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split .txt h3 { font-family: var(--font-display); font-size: clamp(24px, 3.2vw, 36px); color: var(--gold2); margin-bottom: 12px; }
.split .txt p { color: var(--muted); line-height: 1.8; font-size: 15.5px; }
.split .art { border-radius: 18px; overflow: hidden; border: 1px solid rgba(212,169,78,.28);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,169,78,.14), transparent 60%), var(--card); font-size: 84px; }
.split .art img { width: 100%; height: 100%; object-fit: cover; }

/* animated SVG art */
.art-svg { width: 74%; max-width: 340px; filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
  animation: crestfloat 6s ease-in-out infinite; }
.tw1 { animation: tw 2.2s ease-in-out infinite; }
.tw2 { animation: tw 2.2s ease-in-out .7s infinite; }
.tw3 { animation: tw 2.2s ease-in-out 1.3s infinite; }
@keyframes tw { 0%,100%{opacity:.15} 50%{opacity:1} }
.zzz text { animation: zfloat 3s ease-in-out infinite; }
.zzz text:nth-child(2) { animation-delay: .5s; }
.zzz text:nth-child(3) { animation-delay: 1s; }
@keyframes zfloat { 0%,100%{opacity:.2; transform:translateY(2px)} 50%{opacity:1; transform:translateY(-3px)} }
.steam { opacity: 0; animation: steamup 2.8s ease-in-out infinite; }
.steam.s2 { animation-delay: .5s; } .steam.s3 { animation-delay: 1s; }
@keyframes steamup { 0%{opacity:0; transform:translateY(8px)} 35%{opacity:.9} 100%{opacity:0; transform:translateY(-12px)} }

/* map */
.map-wrap { border-radius: 18px; overflow: hidden; border: 1px solid rgba(212,169,78,.3); filter: grayscale(.25) contrast(1.05); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }
.contact-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ctile { text-align: center; padding: 30px 18px; }
.ctile .ic { font-size: 30px; }
.ctile h5 { color: var(--gold2); font-size: 15px; margin: 10px 0 4px; letter-spacing: 1px; }
.ctile p, .ctile a { color: var(--muted); font-size: 14.5px; }
.ctile a:hover { color: var(--gold2); }

/* ================= ROYAL HERITAGE LIGHT THEME (public pages) ================= */
body.theme-light {
  --bg: #f6f4ef;
  --bg2: #ffffff;
  --card: #ffffff;
  --card2: #fbfaf7;
  --gold: #a9825a;
  --gold2: #8a6844;
  --gold-dim: #cbb89a;
  --text: #262421;
  --muted: #837c70;
  --font-display: "Playfair Display", serif;
  --font-body: "Inter", "Mukta", sans-serif;
  background: var(--bg); color: var(--text); font-family: var(--font-body);
}
body.theme-light::after { opacity: .025; }
body.theme-light .nav { background: rgba(255,255,255,.96); border-bottom: 1px solid #e8e2d6; }
body.theme-light .nav .links a { color: #3a352e; }
body.theme-light .nav .links a:hover { background: #f1ece3; color: var(--gold2); }
body.theme-light .nav .links a.active { background: #efe7d9; color: var(--gold2); }
body.theme-light .nav .brand .t1 { color: #2c2823; }
body.theme-light .nav .brand .t2 { color: var(--gold2); }
body.theme-light .hamburger { color: var(--gold2); }
.nav-book { margin-left: 6px; }
body.theme-light .btn { background: linear-gradient(135deg, #b08d57, #8a6844); color: #fff; }
body.theme-light .btn.ghost { background: transparent; border: 1px solid var(--gold-dim); color: var(--gold2); }
body.theme-light .btn.glass { background: rgba(255,255,255,.75); color: #2c2823; border-color: var(--gold-dim); }
body.theme-light input, body.theme-light select, body.theme-light textarea {
  background: #fff; border-color: #ddd5c6; color: #262421;
}
body.theme-light .card { background: #fff; border-color: #ece6da; box-shadow: 0 8px 30px rgba(80,64,40,.07); }
body.theme-light .glass { background: rgba(255,255,255,.72); border-color: rgba(140,110,70,.18); box-shadow: 0 14px 40px rgba(80,64,40,.1); }
body.theme-light .section-title, body.theme-light .sec-head h2, body.theme-light .modal h3, body.theme-light footer .fbrand {
  background: linear-gradient(100deg, #6d4f2c 15%, #a9825a 45%, #6d4f2c 75%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body.theme-light .modal { background: #fff; border-color: var(--gold-dim); }
body.theme-light .glow > .glow-in { background: #fff; }
/* luxury black footer with gold accents */
body.theme-light footer { background: #121212; border-top: 2px solid rgba(212,175,55,.45); }
body.theme-light footer .fnav a { color: #a8a296; transition: color .25s; }
body.theme-light footer .fnav a:hover { color: #D4AF37; }
body.theme-light footer .credit { color: #7d776c; border-top: 1px dashed #2a2a2a; }
body.theme-light footer .credit b { color: #D4AF37; }
body.theme-light footer .muted, body.theme-light footer .muted a { color: #9a9488; }
body.theme-light footer .muted a:hover { color: #D4AF37; }
body.theme-light .toast { background: #fff; border-color: var(--gold); }
body.theme-light .toast p { color: #454039; }
body.theme-light .empty { color: #948c7e; }
body.theme-light .qty-row button { color: var(--gold2); }
body.theme-light .menu-card .ph { background: #f2eee6; }
body.theme-light .status-chip.free { background: #e7f4ec; }
body.theme-light .status-chip.booked { background: #fbe9e7; }
body.theme-light .total-plate { background: linear-gradient(120deg, #f4ead9, #fbf6ec 55%, #f2e7d4); border-color: var(--gold-dim); }
body.theme-light .total-plate .amt { color: #6d4f2c; text-shadow: none; }
body.theme-light .pay-card { background: #fdfcf9; border-color: #e3dccd; }
body.theme-light .pay-card.on { background: #f5ecdd; border-color: var(--gold); }
body.theme-light .f-input label { background: #fff; }
body.theme-light .f-input input { background: #fff; }
body.theme-light .citem { background: #fdfcf9; border-color: #eee7d9; }
body.theme-light .scroll-progress { background: linear-gradient(90deg, #8a6844, #c9a36a, #8a6844); }
body.theme-light .map-wrap { border-color: #ddd0b8; filter: none; }
body.theme-light .icon3d { background: linear-gradient(145deg, #fdf9f1, #efe7d7); border-color: #d9c9a8; box-shadow: 0 12px 24px rgba(90,70,40,.14); }
body.theme-light .feature p, body.theme-light .ctile p { color: #837c70; }
body.theme-light .divider { background: linear-gradient(90deg, transparent, #a9825a, transparent); }
body.theme-light .login-wrap .card { background: #fff; }

/* ---- royal heritage home layout ---- */
.rh { padding-bottom: 30px; }
.rh-hero { padding: 18px 4vw 0; max-width: 1280px; margin: 0 auto; }
.rh-photo { position: relative; border-radius: 20px; overflow: hidden; height: clamp(320px, 58vh, 580px); box-shadow: 0 24px 60px rgba(70,55,30,.22); }
.rh-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rh-photo-fallback { width: 100%; height: 100%; min-height: 280px; background: linear-gradient(150deg, #e8dfcf, #cdbfa4); }
.rh-hero-cap { position: absolute; inset: auto 0 0 0; padding: 90px 30px 26px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20,15,8,.72)); }
.rh-hero-cap h1 { font-family: var(--font-display); font-size: clamp(26px, 4.6vw, 52px); font-weight: 700; text-shadow: 0 3px 18px rgba(0,0,0,.5); }
.rh-hero-cap p { color: #f0e2c8; letter-spacing: 2.5px; font-size: clamp(11px, 1.4vw, 14px); text-transform: uppercase; margin-top: 4px; }
.rh-book {
  position: relative; z-index: 5; display: grid; grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px; align-items: end; background: #fff; border-radius: 14px; padding: 16px 18px;
  max-width: 900px; margin: -46px auto 0; box-shadow: 0 20px 50px rgba(70,55,30,.18);
  border: 1px solid #efe8da;
}
.rh-book label { display: block; margin: 0 0 5px; font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: #a9825a; font-weight: 600; }
.rh-book input { padding: 10px 11px; font-size: 14px; }
.rh-book-btn { height: 44px; white-space: nowrap; }
.rh-sec { padding: 56px 4vw 6px; max-width: 1280px; margin: 0 auto; }
.rh-title { font-family: var(--font-display); text-align: center; font-size: clamp(22px, 3.2vw, 32px); font-weight: 700; color: #2c2823; margin-bottom: 30px; }
.rh-benefits { display: flex; gap: clamp(20px, 5vw, 64px); justify-content: center; flex-wrap: wrap; text-align: center; }
.rh-benefit .bic { font-size: 36px; display: block; color: #a9825a; filter: grayscale(.15); }
.rh-benefit h5 { font-size: 13.5px; font-weight: 600; margin-top: 10px; color: #4a4438; letter-spacing: .3px; }
.rh-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.chip { border: 1px solid #cbbb9c; background: #fff; color: #6d6354; border-radius: 20px; padding: 7px 20px; font-size: 13px; transition: all .2s; }
.chip:hover { border-color: #a9825a; }
.chip.on { background: #8a6844; border-color: #8a6844; color: #fff; }
.rh-row { display: grid; grid-auto-flow: column; grid-auto-columns: min(250px, 74vw); gap: 20px;
  overflow-x: auto; padding: 8px 4px 22px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.rh-loc { scroll-snap-align: start; }
.rh-loc .ph { position: relative; height: 310px; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 32px rgba(70,55,30,.14); }
.rh-loc .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.rh-loc:hover .ph img { transform: scale(1.08); }
.rh-status { position: absolute; top: 10px; right: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 11px; border-radius: 14px; backdrop-filter: blur(6px); }
.rh-status.f { background: rgba(233,248,238,.9); color: #237a48; }
.rh-status.b { background: rgba(251,233,231,.9); color: #b3382c; }
.rh-loc h4 { font-family: var(--font-display); font-size: 18.5px; margin: 13px 0 5px; color: #2c2823; }
.rh-loc p { font-size: 12.8px; color: #837c70; line-height: 1.6; min-height: 40px; }
.rh-loc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.rh-loc-foot b { color: #6d4f2c; font-size: 15px; } .rh-loc-foot b span { font-weight: 400; font-size: 12px; color: #a39a8a; }
.rh-loc-foot a { font-size: 13px; text-decoration: underline; text-underline-offset: 3px; color: #8a6844; }
.rh-priv { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.rh-priv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rh-priv-grid .cell { height: 150px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 26px rgba(70,55,30,.12); }
.rh-priv-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.rh-priv-grid .cell:hover img { transform: scale(1.1); }
.rh-priv-txt p { font-size: 15.5px; line-height: 1.9; color: #575145; }
.rh-priv-txt b { color: #6d4f2c; }

/* ---- play button on hero ---- */
.rh-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: #8a6844; font-size: 30px;
  display: grid; place-items: center; z-index: 4;
  box-shadow: 0 0 0 0 rgba(255,255,255,.6); animation: pulse-ring 2.2s infinite;
}
.rh-play-lbl { position: absolute; bottom: -30px; white-space: nowrap; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.7); }

/* ---- cinematic film player ---- */
.film { position: fixed; inset: 0; z-index: 500; background: #050505; display: flex; align-items: center; justify-content: center; animation: fadein .4s; }
.film-frame { position: relative; width: 100%; height: 100%; overflow: hidden; }
.film-frame > img { position: absolute; inset: -8%; width: 116%; height: 116%; object-fit: cover; will-change: transform; }
.film-grade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,5,8,.5) 0%, transparent 25%, transparent 60%, rgba(5,5,8,.75) 100%);
  box-shadow: inset 0 0 220px rgba(0,0,0,.75); }
.film-cap { position: absolute; left: 0; right: 0; bottom: 12vh; text-align: center; color: #fff; padding: 0 6vw; }
.film-cap h3 { font-family: "Playfair Display", serif; font-size: clamp(24px, 4.4vw, 48px); font-weight: 700;
  text-shadow: 0 4px 30px rgba(0,0,0,.8); }
.film-cap p { color: #ecd9ae; letter-spacing: 3px; text-transform: uppercase; font-size: clamp(11px, 1.5vw, 15px); margin-top: 10px; text-shadow: 0 2px 12px rgba(0,0,0,.8); }
.film-brand { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 6vw; background: radial-gradient(ellipse at center, rgba(5,5,8,.25), rgba(5,5,8,.72)); }
.film-brand img { width: 96px; height: 96px; border-radius: 50%; border: 2px solid rgba(236,217,174,.7); margin-bottom: 18px; box-shadow: 0 0 60px rgba(212,169,78,.5); }
.film-brand h2 { font-family: "Playfair Display", serif; font-size: clamp(30px, 6vw, 64px); letter-spacing: 4px; }
.film-brand p { color: #ecd9ae; letter-spacing: 2.5px; margin-top: 8px; font-size: clamp(12px, 1.6vw, 16px); }
.film-brand .film-tag { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(16px, 2.4vw, 24px); color: #fff; margin-top: 18px; letter-spacing: 1px; }
.film-amenities { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, auto); gap: 14px 18px; place-content: center; padding-bottom: 10vh; }
.film-amenities .fam { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 14px;
  background: rgba(10,10,14,.55); backdrop-filter: blur(10px); border: 1px solid rgba(236,217,174,.35);
  color: #fff; font-size: clamp(12px, 1.6vw, 15px); font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.film-amenities .fam span { font-size: 22px; filter: drop-shadow(0 0 10px rgba(212,169,78,.7)); }
.film-bar { position: absolute; top: 16px; left: 4vw; right: 4vw; display: flex; gap: 6px; }
.film-bar .seg { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,.25); overflow: hidden; }
.film-bar .seg.done { background: rgba(236,217,174,.9); }
.film-bar .fill { height: 100%; background: #ecd9ae; transform-origin: 0 50%; }
.film-close, .film-skip { position: absolute; top: 34px; border: 1px solid rgba(255,255,255,.4); background: rgba(10,10,14,.5); color: #fff; border-radius: 20px; padding: 7px 16px; font-size: 14px; backdrop-filter: blur(8px); }
.film-close { right: 4vw; }
.film-skip { right: calc(4vw + 64px); }
.film-close:hover, .film-skip:hover { border-color: #ecd9ae; color: #ecd9ae; }

/* ================= PREMIUM AMENITIES (emerald + gold glassmorphism) ================= */
body.theme-light { --emerald: #14735c; --emerald2: #0e5c49; }
.rh-sub { text-align: center; color: #837c70; max-width: 640px; margin: -14px auto 36px;
  font-size: 15px; line-height: 1.75; font-family: "Poppins", "Inter", sans-serif; }
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1000px; }
.amen-card {
  position: relative; text-align: center; padding: 30px 20px 26px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.86), rgba(250,247,240,.75));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(20,115,92,.14);
  box-shadow: 0 12px 32px rgba(16,70,54,.08), inset 0 1px 0 #fff;
  transition: box-shadow .3s;
}
.amen-card:hover { box-shadow: 0 26px 54px rgba(16,70,54,.18), 0 0 0 1px rgba(212,169,78,.35), inset 0 1px 0 #fff; }
/* animated border glow */
.amen-card::before {
  content: ""; position: absolute; inset: -1.5px; border-radius: 21px; padding: 1.5px;
  background: conic-gradient(from var(--ga), transparent 0 25%, rgba(212,169,78,.95) 40%, rgba(20,115,92,.85) 55%, transparent 70% 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s; animation: gspin 3.2s linear infinite; pointer-events: none;
}
.amen-card:hover::before { opacity: 1; }
.amen-ic {
  display: inline-grid; place-items: center; width: 64px; height: 64px; font-size: 30px;
  border-radius: 18px; background: linear-gradient(150deg, #e9f5ef, #d3eadd);
  border: 1px solid #b9dccb; box-shadow: 0 10px 22px rgba(16,90,66,.16), inset 0 1px 0 #fff;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.amen-card:hover .amen-ic { transform: scale(1.16) rotate(-5deg); }
.amen-card h4 { font-family: "Playfair Display", var(--font-display); font-size: 16.5px; font-weight: 700;
  color: #1d4d40; margin: 14px 0 7px; }
.amen-card p { font-family: "Poppins", "Inter", sans-serif; font-size: 12.6px; color: #7a746b; line-height: 1.65; }

/* ---- CTA banner ---- */
.cta-banner { position: relative; border-radius: 24px; overflow: hidden; min-height: 360px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(150deg, #123f33, #0b2a22); box-shadow: 0 30px 70px rgba(10,40,30,.35); }
.cta-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,22,17,.62), rgba(6,22,17,.82)); }
.cta-inner { position: relative; z-index: 2; color: #fff; padding: 56px 6vw; max-width: 860px; }
.cta-inner h2 { font-family: "Playfair Display", serif; font-size: clamp(26px, 4.2vw, 44px); font-weight: 700;
  text-shadow: 0 4px 26px rgba(0,0,0,.6); }
.cta-inner p { font-family: "Poppins", "Inter", sans-serif; color: #e9ddc2; font-size: clamp(13.5px, 1.7vw, 16px);
  line-height: 1.8; margin: 16px auto 26px; max-width: 640px; }
body.theme-light .btn.em, .btn.em { background: linear-gradient(135deg, #1d8a6b, #0e5c49); color: #fff; }
body.theme-light .btn.ghost-w, .btn.ghost-w { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(8px); }
.btn.ghost-w:hover { background: rgba(255,255,255,.22); box-shadow: none; }

@media (max-width: 1024px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amen-grid { grid-template-columns: 1fr; } .cta-banner { min-height: 420px; } }

/* ---- amenities section (3D floating icons) ---- */
.rh-amen { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; perspective: 900px; }
.rh-amen-card { text-align: center; padding: 22px 10px 18px; border-radius: 16px; background: #fff;
  border: 1px solid #ece5d6; box-shadow: 0 8px 24px rgba(80,64,40,.08); transition: border-color .25s; }
.rh-amen-card:hover { border-color: #cbb89a; }
.rh-amen-card .aic { display: inline-grid; place-items: center; width: 58px; height: 58px; font-size: 28px;
  border-radius: 16px; background: linear-gradient(145deg, #fdf8ee, #f0e6d2); border: 1px solid #e2d3b4;
  box-shadow: 0 10px 20px rgba(90,70,40,.14), inset 0 1px 0 #fff; }
.rh-amen-card p { font-size: 12.5px; font-weight: 600; color: #4a4438; margin-top: 10px; }

@media (max-width: 900px) {
  .rh-book { grid-template-columns: 1fr 1fr; margin: -34px 12px 0; }
  .rh-book-btn { grid-column: 1 / -1; }
  .rh-priv { grid-template-columns: 1fr; }
  .film-amenities { grid-template-columns: repeat(2, auto); }
  .rh-play { width: 68px; height: 68px; font-size: 24px; }
}
@media (max-width: 520px) {
  .rh-photo { height: 300px; }
  .rh-loc .ph { height: 250px; }
}

/* ================= ULTRA LUXURY HOME ================= */
.hl-hero { min-height: 100vh; }
.hl-scroll { position: absolute; bottom: 118px; left: 50%; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 16px; }
.hl-scroll span { position: absolute; top: 7px; left: 50%; width: 4px; height: 9px; margin-left: -2px;
  border-radius: 3px; background: #ecd9ae; animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0%{transform:translateY(0); opacity:1} 70%{transform:translateY(16px); opacity:0} 100%{opacity:0} }
@media (max-width: 760px) { .hl-scroll { display: none; } }

.story { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(26px, 5vw, 64px); align-items: center; }
.story-img { position: relative; border-radius: 40px; overflow: hidden; height: clamp(280px, 40vw, 440px);
  box-shadow: 0 30px 70px rgba(60,50,30,.2); }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.story-img:hover img { transform: scale(1.07); }
.story-img.res-img { display: grid; place-items: center; }
.story-kicker { font-size: 11.5px; letter-spacing: 3.5px; text-transform: uppercase; color: #a9825a; font-weight: 700; }
.story-txt h2 { font-family: "Playfair Display", serif; font-size: clamp(26px, 3.8vw, 42px); font-weight: 700;
  color: #1F2937; margin: 12px 0 16px; line-height: 1.15; }
.story-txt p { font-family: "Poppins", sans-serif; font-size: 15px; line-height: 1.9; color: #57503f; margin-bottom: 12px; }
.sig { margin-top: 22px; border-left: 3px solid #D4AF37; padding-left: 16px; }
.sig-name { display: block; font-family: "Playfair Display", serif; font-style: italic; font-size: 24px; color: #6d4f2c; }
.sig-role { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: #9a9284; }
.hl-specials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story.rev-order > :first-child { order: 2; }
}

/* navbar blur & shadow on scroll */
.nav.scrolled { box-shadow: 0 10px 40px rgba(20,15,5,.14); }
body.theme-light .nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(18px); }

/* ================= LUXURY BOOKING WIDGET ================= */
.bw { grid-template-columns: repeat(5, 1fr) auto; border-radius: 28px; padding: 26px 28px;
  border: 1.5px solid rgba(212,175,55,.55); background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 34px 80px rgba(10,40,30,.3), inset 0 1px 0 rgba(255,255,255,.9);
  overflow: hidden; animation: bwfloat 6s ease-in-out infinite; }
@keyframes bwfloat { 0%,100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(-6px) } }
@media (max-width: 760px) { .bw { animation: none; } }
/* mouse-follow light */
.bw::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(212,175,55,.14), transparent 70%);
  transition: opacity .3s; }
/* moving glass reflection */
.bw-reflect { position: absolute; top: 0; left: -60%; width: 34%; height: 100%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); animation: bwshine 5.5s ease-in-out infinite; }
@keyframes bwshine { 0%, 55% { left: -60% } 100% { left: 150% } }

.bw-field { position: relative; }
.bw-field label { font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: #0F8B5F; font-weight: 700; margin-bottom: 6px; }
.bw-field input, .bw-select { width: 100%; padding: 12px 12px; font-size: 14px; border-radius: 12px;
  border: 1.5px solid #e2dbc9; background: #fff; transition: all .25s; height: 46px; }
.bw-field input:hover, .bw-select:hover { border-color: #cbb89a; transform: scale(1.015); }
.bw-field input:focus, .bw-select:focus { border-color: #D4AF37; box-shadow: 0 0 0 4px rgba(212,175,55,.18); }
.bw-select { text-align: left; cursor: pointer; color: #1F2937; display: flex; justify-content: space-between; align-items: center; }
.bw-select .car { color: #a9825a; }
.bw-quick { display: flex; gap: 6px; margin-top: 6px; min-height: 18px; flex-wrap: wrap; }
.bw-quick button { border: none; background: #f0ece1; color: #8a6844; font-size: 10.5px; padding: 3px 10px; border-radius: 10px; cursor: pointer; }
.bw-quick button:hover { background: #eadfc6; }
.gold-tip { font-size: 11px; color: #a9825a; font-weight: 700; }

.bw-pop { position: absolute; top: calc(100% + 10px); left: 0; z-index: 30; width: 270px;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px); border: 1px solid #e6ddc8;
  border-radius: 18px; padding: 16px; box-shadow: 0 26px 60px rgba(20,50,40,.25); }
.bw-pop.wide { width: 320px; max-height: 320px; overflow-y: auto; }
.bw-back { position: fixed; inset: 0; z-index: 20; }
.bw-crow { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px dashed #eee5d2; }
.bw-crow:last-of-type { border-bottom: none; }
.bw-crow b { font-size: 14px; color: #1F2937; display: block; }
.bw-crow span { font-size: 11.5px; color: #9a9284; }
.bw-cbtn { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid #cfe7dc; cursor: pointer;
  background: rgba(240,249,245,.9); color: #0F8B5F; font-size: 17px; font-weight: 700; transition: all .2s; }
.bw-cbtn:hover { background: #0F8B5F; color: #fff; box-shadow: 0 6px 16px rgba(15,139,95,.35); }
.bw-num { min-width: 22px; text-align: center; font-size: 16px; color: #0F8B5F; display: inline-block; }
.bw-trow { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 9px 10px;
  border: none; background: none; border-radius: 12px; cursor: pointer; transition: background .2s; }
.bw-trow:hover { background: #f2f8f4; }
.bw-trow.on { background: #e8f5ee; outline: 1.5px solid #bcdccb; }
.bw-timg { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex: none;
  display: grid; place-items: center; font-size: 24px; background: #f0ece1; }
.bw-tinfo { flex: 1; min-width: 0; }
.bw-tinfo b { display: block; font-size: 13.5px; color: #1F2937; }
.bw-tinfo i { font-style: normal; font-size: 11.5px; color: #0F8B5F; font-weight: 600; }

.p-good { border-color: #0F8B5F !important; box-shadow: 0 0 0 4px rgba(15,139,95,.15) !important; }
.p-bad { border-color: #d64545 !important; }
.promo-ok { font-size: 11px; color: #0F8B5F; font-weight: 700; }
.promo-bad { font-size: 11px; color: #c2453a; font-weight: 600; }

.bw-go { grid-column: auto; height: 50px; align-self: end; padding: 0 30px; border: none; cursor: pointer;
  border-radius: 30px; font-size: 15px; font-weight: 700; color: #fff; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
  background: linear-gradient(110deg, #0F8B5F 10%, #14a371 45%, #c9a53c 130%);
  box-shadow: 0 14px 34px rgba(15,139,95,.4); transition: box-shadow .3s; position: relative; overflow: hidden; }
.bw-go::after { content: ""; position: absolute; top: 0; left: -70%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-20deg); transition: left .5s; }
.bw-go:hover::after { left: 140%; }
.bw-spin { font-size: 20px; display: inline-block; }
.bw-arrow { display: inline-block; }

.trust-mini { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; padding: 86px 4vw 0; }
.trust-mini span { font-size: 13px; font-weight: 600; color: #14503c; padding: 9px 18px; border-radius: 24px;
  background: rgba(255,255,255,.8); backdrop-filter: blur(10px); border: 1px solid #d7ecdf;
  box-shadow: 0 6px 18px rgba(15,80,60,.08); font-family: "Poppins", sans-serif; }

@media (max-width: 1000px) { .bw { grid-template-columns: 1fr 1fr; } .bw-go { grid-column: 1 / -1; } }
@media (max-width: 760px) {
  .bw { grid-template-columns: 1fr; position: relative; margin: -70px 12px 0; transform: none !important; left: auto; bottom: auto; width: auto; }
  .bw-pop { width: 100%; }
  .trust-mini { padding-top: 26px; }
}

/* ================= CINEMATIC EXTRAS ================= */
/* floating gold particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particles span { position: absolute; bottom: -12px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,220,154,.95), rgba(212,175,55,.25));
  animation: partfloat linear infinite; opacity: 0; }
@keyframes partfloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: .85; }
  100% { transform: translateY(-88vh) translateX(24px); opacity: 0; }
}
/* light rays */
.rays { position: absolute; inset: -20% -10%; pointer-events: none; z-index: 1; opacity: .5; mix-blend-mode: screen;
  background: conic-gradient(from 200deg at 70% -10%,
    transparent 0 8%, rgba(244,220,154,.14) 10%, transparent 13%,
    transparent 18%, rgba(244,220,154,.1) 21%, transparent 24%,
    transparent 30%, rgba(244,220,154,.12) 33%, transparent 36%);
  animation: raysway 9s ease-in-out infinite alternate; }
@keyframes raysway { from { transform: rotate(-2deg) } to { transform: rotate(2.5deg) } }

/* hero badge */
.hero-badge { display: inline-block; padding: 8px 20px; border-radius: 24px; font-size: 12.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: #f4dc9a; background: rgba(0,0,0,.3); border: 1px solid rgba(244,220,154,.5);
  backdrop-filter: blur(8px); margin-bottom: 16px; }

/* rising steam (spans) */
.res-plate-wrap { position: relative; display: inline-block; }
.res-plate-wrap .steam, .chef-art .steam {
  position: absolute; top: -6px; width: 5px; height: 26px; border-radius: 4px; left: 46%;
  background: linear-gradient(180deg, rgba(255,255,255,.85), transparent);
  filter: blur(2.5px); opacity: 0; animation: steamup 2.6s ease-in-out infinite; }
.res-plate-wrap .steam.s2 { left: 56%; } .res-plate-wrap .steam.s3 { left: 38%; }

/* statistics band */
.stat-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px;
  background: #dcd2bd; border-radius: 20px; overflow: hidden; border: 1px solid #dcd2bd; }
.stat-band .stat-cell { background: #fff; text-align: center; padding: 36px 14px; }
.stat-band .num { font-family: "Playfair Display", serif; font-size: clamp(30px, 4vw, 44px); font-weight: 700; color: #0F8B5F; }
.stat-band .lbl { font-family: "Poppins", sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #8b8478; margin-top: 6px; }

/* offer ribbons + shine */
.offer { position: relative; overflow: hidden; }
.offer .ribbon { position: absolute; top: 12px; right: -28px; transform: rotate(38deg); font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; padding: 4px 34px; background: linear-gradient(90deg, #D4AF37, #b8860b); color: #2c2000; }
.offer.shine::after { content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: offershine 3.6s ease-in-out infinite; }
@keyframes offershine { 0%, 60% { left: -80% } 100% { left: 140% } }

/* masonry gallery + lightbox */
.masonry { columns: 4 220px; column-gap: 14px; }
.mas { position: relative; break-inside: avoid; margin-bottom: 14px; border-radius: 16px; overflow: hidden;
  cursor: zoom-in; border: 1px solid #e9e2d3; box-shadow: 0 10px 26px rgba(60,50,30,.1); }
.mas img { width: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .4s; }
.mas:hover img { transform: scale(1.09); filter: brightness(.75) blur(1px); }
.mas-ov { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; opacity: 0; transition: opacity .35s; background: rgba(10,30,22,.35); backdrop-filter: blur(1px); color: #fff; }
.mas:hover .mas-ov { opacity: 1; }
.mas-ov span { font-size: 26px; } .mas-ov p { font-size: 12.5px; letter-spacing: 1px; }
.lb { position: fixed; inset: 0; z-index: 600; background: rgba(5,8,6,.94); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; padding: 4vh 4vw; cursor: zoom-out; }
.lb img { max-width: 92vw; max-height: 80vh; border-radius: 16px; object-fit: cover; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb p { color: #ecd9ae; letter-spacing: 2px; font-size: 14px; }

/* chef section */
.chef-sec { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }
.chef-art { position: relative; display: grid; place-items: center; height: 280px; border-radius: 24px;
  background: radial-gradient(circle at 40% 30%, rgba(212,175,55,.25), transparent 60%), linear-gradient(160deg, #10402f, #0F8B5F);
  box-shadow: 0 24px 60px rgba(10,60,44,.3); }
.chef-ic { font-size: 110px; filter: drop-shadow(0 16px 30px rgba(0,0,0,.4)); }
.chef-txt p { font-family: "Poppins", sans-serif; font-size: 15px; line-height: 1.85; color: #57503f; }
.chef-stats { display: flex; gap: 30px; margin-top: 22px; flex-wrap: wrap; }
.chef-stats b { font-family: "Playfair Display", serif; font-size: 30px; color: #0F8B5F; display: block; }
.chef-stats span { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: #8b8478; }

/* photo slider + thumbnails */
.det-ph { position: relative; }
.sl-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.88); color: #0F8B5F; font-size: 20px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.25); transition: transform .2s; }
.sl-nav:hover { transform: translateY(-50%) scale(1.12); }
.sl-nav.l { left: 10px; } .sl-nav.r { right: 10px; }
.thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; padding-bottom: 4px; }
.thumbs img { width: 58px; height: 44px; object-fit: cover; border-radius: 8px; cursor: pointer;
  border: 2px solid transparent; opacity: .7; transition: all .2s; flex: none; }
.thumbs img.on, .thumbs img:hover { border-color: #D4AF37; opacity: 1; }
.ph-count { position: absolute; bottom: 10px; right: 10px; font-size: 11px; font-weight: 700;
  background: rgba(8,8,10,.65); color: #fff; padding: 3px 10px; border-radius: 12px; backdrop-filter: blur(6px); }
.star-btn { background: none; border: none; font-size: 30px; cursor: pointer; padding: 2px; transition: transform .15s; }
.star-btn:hover { transform: scale(1.25); }

/* whatsapp floating button */
.wa-float { position: fixed; right: 20px; bottom: 22px; z-index: 95; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; font-size: 26px; text-decoration: none;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  box-shadow: 0 12px 32px rgba(18,140,126,.45), 0 0 0 6px rgba(37,211,102,.15); }

@media (max-width: 860px) {
  .chef-sec { grid-template-columns: 1fr; }
  .masonry { columns: 2 140px; }
  .wa-float { bottom: 78px; }
}

/* ================= LUXURY RESTAURANT PAGE ================= */
.res-hero { position: relative; min-height: 64vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.res-hero-bg { position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 18% 20%, rgba(212,175,55,.35), transparent),
    radial-gradient(ellipse 50% 55% at 85% 80%, rgba(15,139,95,.5), transparent),
    linear-gradient(160deg, #0d3f30, #0F8B5F 55%, #0a5c40); }
.res-hero-bg::after { content: "🍜　🍛　🥟　🍗　🍹　🥘　🍰　🫖"; position: absolute; inset: 0; font-size: 42px;
  opacity: .14; display: flex; flex-wrap: wrap; gap: 60px; align-items: center; justify-content: center; padding: 5%;
  animation: drift 40s linear infinite; }
@keyframes drift { from { transform: translateX(0) } to { transform: translateX(-60px) } }
.res-plate { font-size: 64px; display: inline-block; filter: drop-shadow(0 14px 24px rgba(0,0,0,.4)); margin-bottom: 6px; }
.cat-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.cat-card { text-align: center; padding: 22px 12px 16px; border-radius: 18px; background: #fff; cursor: pointer;
  border: 1.5px solid #e9e2d3; box-shadow: 0 8px 24px rgba(60,50,30,.07); transition: border-color .25s; }
.cat-card span { font-size: 34px; display: block; }
.cat-card b { display: block; margin: 8px 0 3px; font-size: 14px; color: #1F2937; font-family: "Playfair Display", serif; }
.cat-card p { font-size: 11.5px; color: #0F8B5F; font-weight: 600; }
.cat-card.on { border-color: #0F8B5F; background: #f0f9f5; box-shadow: 0 12px 30px rgba(15,139,95,.15); }

.spec-row { overflow: hidden; border-radius: 18px; border: 1px dashed #d9c9a3; padding: 14px 0; background: #fdf9ef; }
.spec-track { display: flex; gap: 18px; width: max-content; }
.spec-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #eadfc6;
  border-radius: 14px; padding: 10px 18px 10px 10px; cursor: pointer; box-shadow: 0 6px 18px rgba(80,64,40,.08); }
.spec-card img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; }
.spec-card .noimg { font-size: 30px; }
.spec-card b { display: block; font-size: 13.5px; color: #1F2937; }
.spec-card p { font-size: 12.5px; color: #0F8B5F; font-weight: 700; }

.menu-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; margin-bottom: 26px; }
.msearch { max-width: 300px; border-radius: 24px; padding: 11px 18px; }
.mfood-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.mfood { background: #fff; border: 1px solid #e9e2d3; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(60,50,30,.08); }
.mfood .mph { position: relative; height: 150px; cursor: pointer; overflow: hidden;
  background: linear-gradient(150deg, #f2ecdf, #e4d9c2); display: flex; align-items: center; justify-content: center; }
.mfood .mph img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.mfood:hover .mph img { transform: scale(1.1); }
.mfood .mph .noimg { font-size: 46px; opacity: .6; }
.mfood .mph .heart { position: absolute; top: 8px; right: 8px; width: 30px; height: 30px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.9); color: #c4bdb0; font-size: 14px; cursor: pointer; }
.mfood .mph .heart.on { color: #e0455c; }
.mfood .mph .deal { position: absolute; bottom: 8px; left: 8px; background: rgba(212,175,55,.95); color: #3a2c00;
  font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 10px; }
.mfood .mbody { padding: 13px 15px 15px; }
.mfood h4 { font-size: 15px; color: #1F2937; display: flex; align-items: center; gap: 7px; font-weight: 600; }
.mfood .meta { font-size: 11.5px; color: #948c7c; margin: 5px 0; font-family: "Poppins", sans-serif; }
.mfood .desc { font-size: 12px; color: #7a746a; line-height: 1.55; }
.mprice { color: #0F8B5F; font-size: 16.5px; }
.mph-big { font-size: 64px; display: grid; place-items: center; height: 100%; }

.cart-float { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 90;
  display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border: 1px solid #cfe7dc; border-radius: 40px; padding: 10px 12px 10px 22px;
  box-shadow: 0 18px 50px rgba(15,80,60,.25); font-size: 14.5px; color: #1F2937; }
.cart-float b { color: #0F8B5F; }
.cart-float .btn { border-radius: 26px; }

/* ================= LUXURY BOOKING PAGE (RoomsLuxe) ================= */
.lux-hero { position: relative; min-height: 78vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: visible; padding-bottom: 120px; }
.lux-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lux-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,26,20,.55), rgba(8,26,20,.35) 45%, rgba(8,26,20,.7)); }
.lux-hero-txt { position: relative; z-index: 2; text-align: center; color: #fff; padding: 90px 5vw 30px; }
.lux-hero-txt h1 { font-family: "Playfair Display", serif; font-size: clamp(30px, 5.4vw, 58px); font-weight: 700; text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.lux-hero-txt p { font-family: "Poppins", sans-serif; color: #e9ddc2; margin: 12px auto 24px; max-width: 560px; font-size: clamp(13.5px, 1.8vw, 16.5px); line-height: 1.7; }
.lux-search { position: absolute; z-index: 5; bottom: -64px; left: 50%; transform: translateX(-50%);
  width: min(1080px, 94vw); display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 12px; align-items: end;
  background: rgba(255,255,255,.9); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; padding: 18px; box-shadow: 0 30px 70px rgba(10,40,30,.28); }
.lux-search label { display: block; margin: 0 0 5px; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: #0F8B5F; font-weight: 700; }
.lux-search input, .lux-search select { padding: 10px 10px; font-size: 13.5px; background: #fff; }
.lux-go { height: 42px; white-space: nowrap; }
.cnt { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid #ddd5c6; border-radius: 8px; padding: 5px 8px; justify-content: space-between; }
.cnt button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid #cfe7dc; background: #eef7f2; color: #0F8B5F; font-size: 15px; font-weight: 700; }
.cnt b { min-width: 18px; text-align: center; }
.lux .rh-sec:first-of-type { padding-top: 96px; }

/* room cards */
.lux-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.lux-card { border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid #e9e2d3;
  box-shadow: 0 12px 34px rgba(60,50,30,.09); }
.lux-card .lph { position: relative; height: 190px; overflow: hidden; background: linear-gradient(150deg, #e8dfcf, #cdbfa4); }
.lux-card .lph img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,1,.3,1); }
.lux-card:hover .lph img { transform: scale(1.09); }
.lux-card .heart { position: absolute; top: 10px; left: 10px; width: 34px; height: 34px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.85); color: #b9b2a5; font-size: 16px; cursor: pointer;
  transition: all .25s; backdrop-filter: blur(6px); }
.lux-card .heart.on { color: #e0455c; transform: scale(1.15); }
.lux-card .deal { position: absolute; bottom: 10px; left: 10px; background: rgba(212,175,55,.95); color: #3a2c00;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 12px; }
.lux-card .lbody { padding: 16px 18px 18px; }
.lux-card h4 { font-family: "Playfair Display", serif; font-size: 17.5px; color: #1F2937; }
.lux-card .meta { font-size: 12px; color: #8b8478; margin: 4px 0; font-family: "Poppins", sans-serif; }
.lux-card .desc { font-size: 12.5px; color: #6f695e; line-height: 1.6; }
.lux-card .price b { color: #0F8B5F; font-size: 18px; }
.lux-card .price span { font-size: 12px; color: #9a9284; }
.lux-card .price .tot { font-size: 11.5px; color: #a9825a; font-weight: 600; }
.rate-chip { font-size: 12px; color: #6f695e; white-space: nowrap; }
.stars { color: #D4AF37; font-size: 13px; letter-spacing: 1px; }
.stars i { color: #e4ddcc; font-style: normal; }

/* skeleton loading */
.skel { height: 330px; border-radius: 20px; background: linear-gradient(100deg, #efe9dd 40%, #f9f6ef 50%, #efe9dd 60%);
  background-size: 200% 100%; animation: skel 1.3s linear infinite; }
@keyframes skel { to { background-position: -200% 0 } }

/* offers */
.offer-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.offer { background: linear-gradient(160deg, #ffffff, #f6f1e6); border: 1px solid #e7dcc3; border-radius: 18px;
  padding: 22px 18px; text-align: center; box-shadow: 0 10px 26px rgba(80,64,40,.08); }
.offer span { font-size: 30px; display: block; }
.offer b { display: block; margin: 10px 0 5px; color: #6d4f2c; font-size: 14.5px; }
.offer p { font-size: 12px; color: #8b8478; font-family: "Poppins", sans-serif; }

/* reviews */
.rev-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.rev { background: #fff; border: 1px solid #eae3d4; border-radius: 18px; padding: 22px; box-shadow: 0 10px 28px rgba(60,50,30,.07); }
.rev .rav { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700;
  background: linear-gradient(135deg, #0F8B5F, #0a6647); color: #fff; font-size: 17px; }
.rev .stars { display: block; margin: 12px 0 8px; }
.rev p { font-size: 13.5px; color: #57503f; line-height: 1.7; font-style: italic; }

/* faq */
.faq-item { background: #fff; border: 1px solid #e9e2d3; border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
.faq-item.open { border-color: #bcd9cb; box-shadow: 0 8px 22px rgba(16,90,66,.08); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: none; border: none; text-align: left; padding: 15px 18px; font-size: 14.5px; font-weight: 600; color: #1F2937; }
.faq-q span { color: #0F8B5F; font-size: 20px; font-weight: 400; }
.faq-a { padding: 0 18px 16px; font-size: 13.5px; color: #6f695e; line-height: 1.75; font-family: "Poppins", sans-serif; }

/* distances */
.dist-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin: 20px 0; }
.dist { background: #fff; border: 1px solid #e9e2d3; border-radius: 14px; padding: 16px; text-align: center; }
.dist span { font-size: 24px; display: block; }
.dist b { display: block; font-size: 13px; margin: 8px 0 3px; color: #1F2937; }
.dist p { font-size: 12px; color: #0F8B5F; font-weight: 600; }

/* price breakdown in modal */
.brk { border: 1px solid #e9e2d3; border-radius: 12px; padding: 6px 14px; margin-top: 4px; }
.brk > div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed #eee5d2; font-size: 14px; }
.brk > div:last-child { border-bottom: none; }
.brk .gt { font-size: 16px; font-weight: 700; color: #0F8B5F; }
.det-ph { border-radius: 14px; overflow: hidden; height: 220px; background: linear-gradient(150deg,#e8dfcf,#cdbfa4); }
.det-ph img { width: 100%; height: 100%; object-fit: cover; }

/* sticky mobile bar */
.lux-sticky { display: none; }
@media (max-width: 760px) {
  .lux-search { position: relative; bottom: auto; left: auto; transform: none; margin: -70px auto 0;
    grid-template-columns: 1fr 1fr; }
  .lux-go { grid-column: 1 / -1; }
  .lux .rh-sec:first-of-type { padding-top: 40px; }
  .lux-sticky { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid #e2dbca;
    padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); justify-content: space-between; align-items: center;
    box-shadow: 0 -8px 30px rgba(60,50,30,.12); font-size: 14px; }
  .lux-sticky b { color: #0F8B5F; }
  .rh.lux { padding-bottom: 80px; }
}

/* ================= premium finish (UI/UX pro pass) ================= */
/* gold scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 400;
  background: linear-gradient(90deg, #b8860b, var(--gold2), #b8860b);
  transform-origin: 0 50%; box-shadow: 0 0 12px rgba(212,169,78,.6);
}

/* animated nav underline (shared layout) */
.nav-underline {
  position: absolute; left: 10px; right: 10px; bottom: 3px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  box-shadow: 0 0 10px rgba(212,169,78,.7); display: block;
}

/* accessibility: visible focus rings */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 6px;
}

/* comfortable tap targets on touch devices */
@media (pointer: coarse) {
  .btn.sm { padding: 10px 16px; }
  .side button { padding: 13px 16px; }
}

/* respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero2 .bgwrap img { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* crisper large-screen rendering (4K displays) */
@media (min-width: 1800px) {
  .section { max-width: 1440px; }
  body { font-size: 17px; }
  .hero2 h1 { font-size: 96px; }
}
img { image-rendering: auto; }

/* ================= animated creative typography ================= */
.section-title, .sec-head h2, .main h2.pg, .modal h3, footer .fbrand {
  background: linear-gradient(100deg, #f4dc9a 15%, #b8860b 35%, #f8e7b5 50%, #caa244 65%, #f4dc9a 85%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldshine 5s linear infinite;
}
@keyframes goldshine { to { background-position: 200% center } }
.hero2 .eyebrow { animation: fadedown 1.1s .1s cubic-bezier(.16,1,.3,1) backwards, tracking 4s ease-in-out infinite alternate; }
@keyframes tracking { from { letter-spacing: 6px } to { letter-spacing: 9px } }
.nav .brand .t1 { transition: text-shadow .3s; }
.nav .brand:hover .t1 { text-shadow: 0 0 18px rgba(212,169,78,.7); }
.btn { position: relative; overflow: hidden; }
.btn::after { content: ""; position: absolute; top: 0; left: -80%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .5s; }
.btn:hover::after { left: 130%; }

/* ================= glassmorphism estate theme ================= */
.glass {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.09);
}

/* hero booking bar */
.book-bar {
  display: grid; grid-template-columns: 1fr 1fr .7fr auto; gap: 12px; align-items: end;
  padding: 18px; margin-top: 34px; text-align: left; max-width: 760px; width: 100%;
  animation: fadedown 1.1s .7s cubic-bezier(.16,1,.3,1) backwards;
}
.book-bar label { margin: 0 0 4px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); }
.book-bar input { background: rgba(10,10,14,.55); }

/* listing (property-style) cards */
.listing { overflow: hidden; padding: 0; transition: all .35s cubic-bezier(.16,1,.3,1); position: relative; }
.listing:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(212,169,78,.4); }
.listing .lph { height: 150px; position: relative; overflow: hidden;
  background: radial-gradient(circle at 30% 25%, rgba(212,169,78,.22), transparent 65%), linear-gradient(150deg, #1c1c25, #101015);
  display: flex; align-items: center; justify-content: center; font-size: 52px; }
.listing .lph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
.listing:hover .lph img { transform: scale(1.08); }
.listing .price-badge {
  position: absolute; bottom: 12px; left: 12px; padding: 6px 14px; border-radius: 20px;
  background: rgba(8,8,10,.75); backdrop-filter: blur(8px); border: 1px solid rgba(212,169,78,.5);
  color: var(--gold2); font-weight: 700; font-size: 14.5px;
}
.listing .lbody { padding: 16px 18px 18px; }
.listing .lbody h4 { font-family: var(--font-display); font-size: 21px; color: var(--text); }
.listing .lmeta { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 12px; }
.listing .lmeta span { font-size: 12.5px; color: var(--muted); }
.listing .avail-dot { position: absolute; top: 12px; right: 12px; }

/* virtual tour */
.tour { position: relative; border-radius: 22px; overflow: hidden; cursor: pointer; }
.tour img { width: 100%; height: clamp(300px, 52vw, 540px); object-fit: cover; display: block; transition: transform 1.4s; }
.tour:hover img { transform: scale(1.05); }
.tour .tshade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(5,5,8,.55)); }
.tour .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(212,169,78,.92); color: #14100a; font-size: 34px; display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(212,169,78,.5); animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(212,169,78,.55)} 100%{box-shadow:0 0 0 34px rgba(212,169,78,0)} }
.tour .tlabel { position: absolute; bottom: 18px; left: 20px; color: #fdf6e3; }
.tour .tlabel b { font-family: var(--font-display); font-size: 22px; display: block; }
.tour .tlabel span { color: var(--gold); font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; }
.tour-modal { position: fixed; inset: 0; z-index: 300; background: rgba(4,4,6,.96); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3vh 3vw; animation: fadein .25s; }
.tour-modal .frame { width: min(1100px, 94vw); border-radius: 18px; overflow: hidden; border: 1px solid rgba(212,169,78,.4); }
.tour-modal img { width: 100%; height: min(70vh, 620px); object-fit: cover; animation: tourpan 24s ease-in-out infinite alternate; }
@keyframes tourpan {
  0%   { object-position: 0% 30%; transform: scale(1.25); }
  33%  { object-position: 50% 60%; transform: scale(1.05); }
  66%  { object-position: 100% 40%; transform: scale(1.3); }
  100% { object-position: 50% 20%; transform: scale(1.1); }
}
.tour-modal .tbar { display: flex; gap: 14px; margin-top: 16px; align-items: center; }

/* team / agent cards */
.team-card { text-align: center; padding: 28px 20px; transition: all .3s; }
.team-card:hover { transform: translateY(-6px); }
.team-card .tavatar {
  width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  font-size: 38px; border: 2px solid var(--gold-dim); overflow: hidden;
  background: radial-gradient(circle at 32% 28%, #2a2a35, #14141a);
  box-shadow: 0 0 30px rgba(212,169,78,.18);
}
.team-card .tavatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-display); font-size: 20px; color: var(--gold2); }
.team-card .role { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 4px 0 10px; }
.team-card a { font-size: 14px; }

/* trust strip */
.trust { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.trust .tbadge { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 40px; font-size: 14px; }
.trust .tbadge b { color: var(--gold2); }

@media (max-width: 860px) {
  .book-bar { grid-template-columns: 1fr 1fr; }
  .book-bar .btn { grid-column: 1 / -1; }
  .tour .play { width: 68px; height: 68px; font-size: 26px; }
}
@media (max-width: 520px) {
  .book-bar { grid-template-columns: 1fr; }
  .listing .lph { height: 130px; }
}

/* ================= 3D elements & fancy checkout ================= */

/* 3D icon medallion */
.icon3d {
  width: 74px; height: 74px; margin: 0 auto; display: grid; place-items: center;
  font-size: 36px; border-radius: 22px; position: relative; transform-style: preserve-3d;
  background: linear-gradient(145deg, #23232c, #101014);
  border: 1px solid rgba(212,169,78,.45);
  box-shadow: 0 14px 28px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.09), 0 0 24px rgba(212,169,78,.12);
  animation: icfloat 4.5s ease-in-out infinite;
}
.icon3d::after { content: ""; position: absolute; inset: auto 12px -16px 12px; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), transparent 70%); transform: translateZ(-40px); }
@keyframes icfloat { 0%,100%{transform:translateY(0) rotateX(8deg)} 50%{transform:translateY(-9px) rotateX(-6deg)} }

/* rotating golden glow border */
@property --ga { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.glow { position: relative; border-radius: 20px; padding: 1.6px;
  background: conic-gradient(from var(--ga), rgba(212,169,78,.05) 0%, var(--gold) 12%, rgba(212,169,78,.05) 30%, rgba(212,169,78,.05) 55%, var(--gold2) 68%, rgba(212,169,78,.05) 85%);
  animation: gspin 5s linear infinite; }
@keyframes gspin { to { --ga: 360deg; } }
.glow > .glow-in { background: var(--card); border-radius: 19px; padding: 22px; }
@supports not (background: conic-gradient(from 0deg, red, blue)) { .glow { background: var(--gold-dim); } }

/* floating decor emojis around a section */
.float-stage { position: relative; }
.float-ic { position: absolute; font-size: 30px; opacity: .5; pointer-events: none; filter: drop-shadow(0 8px 12px rgba(0,0,0,.6));
  animation: deco 7s ease-in-out infinite; }
@keyframes deco { 0%,100%{transform:translateY(0) rotate(-8deg) scale(1)} 50%{transform:translateY(-22px) rotate(10deg) scale(1.12)} }

/* cart items */
.citem {
  display: flex; align-items: center; gap: 14px; padding: 13px 14px; margin-bottom: 10px;
  background: linear-gradient(145deg, #1c1c24, #131318); border: 1px solid #2a2a34; border-radius: 14px;
  border-left: 3px solid var(--gold); transform-style: preserve-3d; transition: all .25s;
  animation: itemin .45s cubic-bezier(.16,1,.3,1) backwards;
}
.citem:nth-child(2){animation-delay:.06s}.citem:nth-child(3){animation-delay:.12s}.citem:nth-child(4){animation-delay:.18s}.citem:nth-child(5){animation-delay:.24s}
@keyframes itemin { from{opacity:0; transform:translateX(-26px) rotateY(14deg)} to{opacity:1; transform:none} }
.citem:hover { transform: translateY(-3px) scale(1.012); border-color: var(--gold-dim); box-shadow: 0 12px 26px rgba(0,0,0,.45); }
.citem .cic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; font-size: 22px; border-radius: 12px;
  background: radial-gradient(circle at 32% 28%, #2c2c38, #15151b); border: 1px solid rgba(212,169,78,.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.citem .cname { flex: 1; min-width: 0; } .citem .cname b { display: block; font-size: 15px; }
.citem .cname span { font-size: 12.5px; color: var(--muted); }
.citem .camt { font-weight: 700; color: var(--gold2); white-space: nowrap; }
.citem .x { background: none; border: 1px solid #33333f; color: var(--muted); width: 28px; height: 28px; border-radius: 8px; }
.citem .x:hover { color: var(--red); border-color: var(--red); }

/* grand total plate */
.total-plate { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding: 16px 18px;
  border-radius: 14px; background: linear-gradient(120deg, rgba(212,169,78,.16), rgba(212,169,78,.05) 55%, rgba(212,169,78,.14));
  border: 1px solid rgba(212,169,78,.45); }
.total-plate .lab { letter-spacing: 2.5px; text-transform: uppercase; font-size: 12.5px; color: var(--gold); }
.total-plate .amt { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold2);
  text-shadow: 0 0 22px rgba(212,169,78,.4); }

/* payment method cards */
.pay-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 6px; }
.pay-card { position: relative; cursor: pointer; border-radius: 16px; padding: 16px 14px; text-align: center;
  background: linear-gradient(150deg, #1d1d25, #121217); border: 1.5px solid #2c2c36;
  transition: all .25s cubic-bezier(.16,1,.3,1); transform-style: preserve-3d; user-select: none; }
.pay-card .pic { font-size: 30px; display: block; transition: transform .3s; }
.pay-card b { display: block; margin-top: 8px; font-size: 14.5px; }
.pay-card span { font-size: 12px; color: var(--muted); }
.pay-card:hover { transform: translateY(-3px) rotateX(5deg); border-color: var(--gold-dim); }
.pay-card.on { border-color: var(--gold); background: linear-gradient(150deg, rgba(212,169,78,.2), rgba(212,169,78,.05));
  box-shadow: 0 10px 30px rgba(212,169,78,.18), inset 0 1px 0 rgba(255,255,255,.1); transform: translateY(-3px); }
.pay-card.on .pic { transform: scale(1.2) translateZ(20px); }
.pay-card.on::after { content: "✓"; position: absolute; top: 8px; right: 10px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #14100a; font-size: 12px; font-weight: 800; display: grid; place-items: center; }

/* checkout stepper */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin: 22px 0 30px; }
.step { display: flex; align-items: center; gap: 9px; }
.step .dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px;
  border: 1.5px solid #33333f; color: var(--muted); background: var(--bg2); transition: all .3s; }
.step.on .dot { border-color: var(--gold); color: #14100a; background: linear-gradient(135deg, var(--gold2), #b8860b);
  box-shadow: 0 0 18px rgba(212,169,78,.5); }
.step .slb { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.step.on .slb { color: var(--gold2); }
.step-line { width: clamp(24px, 6vw, 70px); height: 1.5px; margin: 0 10px;
  background: linear-gradient(90deg, var(--gold-dim), #33333f); }

/* fancy inputs */
.f-input { position: relative; margin-top: 18px; }
.f-input input { padding: 15px 14px 13px; border-radius: 12px; background: linear-gradient(150deg, #17171e, #101014);
  border: 1.5px solid #2c2c36; font-size: 15px; }
.f-input label { position: absolute; left: 12px; top: -8px; margin: 0; background: var(--card); padding: 0 7px;
  font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold); border-radius: 6px; }
.f-input input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,169,78,.14); }

/* confetti success */
.burst { position: relative; display: inline-block; }
.burst i { position: absolute; font-style: normal; animation: burst 1.6s ease-out infinite; opacity: 0; }
@keyframes burst { 0%{transform:translate(0,0) scale(.4); opacity:1} 100%{transform:translate(var(--dx),var(--dy)) scale(1.15) rotate(50deg); opacity:0} }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .hero2 { height: 92vh; }
  .pay-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { flex-wrap: wrap; }
  .nav .links { display: none; width: 100%; flex-direction: column; }
  .nav .links.open { display: flex; }
  .hamburger { display: block; }
  .panel { flex-direction: column; }
  .side { width: 100%; flex-direction: row; overflow-x: auto; }
  .side .sep { display: none; }
  .side button { white-space: nowrap; width: auto; }
  .pos { grid-template-columns: 1fr; }
  .modal .row { grid-template-columns: 1fr; }
}

/* ================= RESPONSIVE HARDENING (production pass) ================= */
/* never allow sideways scrolling on any device */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, canvas, iframe { max-width: 100%; }

/* tablet */
@media (max-width: 1024px) {
  .main { padding: 22px 20px; }
}

/* phones & small tablets */
@media (max-width: 680px) {
  /* stack multi-column grids; keep small stat/thumbnail cards 2-up for density */
  .grid { grid-template-columns: 1fr !important; gap: 14px; }
  .grid.c4 { grid-template-columns: repeat(2, 1fr) !important; }
  .main { padding: 16px 12px; }
  .main h2.pg { font-size: 22px; }
  .section { padding-left: 14px; padding-right: 14px; }
  .section-title { font-size: clamp(26px, 8vw, 36px); }
  .rh-title { font-size: clamp(24px, 7vw, 34px); }
  /* modals fill the screen comfortably */
  .modal { padding: 20px 16px; max-height: 92vh; }
  .modal-actions { flex-wrap: wrap; }
  .modal-actions .btn { flex: 1 1 auto; }
  /* wide tables scroll inside their card instead of breaking the layout */
  .tbl-wrap table { min-width: 620px; }
}

/* very small phones */
@media (max-width: 380px) {
  .nav .brand .t1 { font-size: 16px; }
  .nav .brand .t2 { display: none; }
  .main h2.pg { font-size: 20px; }
  body { font-size: 15px; }
}

/* thumb-friendly controls on touch devices; 16px inputs stop iOS zoom-on-focus */
@media (pointer: coarse) {
  .btn, button, .pay-card, .side button, .nav .links a { min-height: 44px; }
  input, select, textarea { min-height: 44px; font-size: 16px; }
}

/* ===== ALL staff panels usable on tablet & phone (waiter, admin, reception,
   kitchen, POS). Sidebar becomes a scrollable top strip; content is full width
   so the dashboard and every tab actually shows on small screens. ===== */
@media (max-width: 1024px) {
  .panel { flex-direction: column; min-height: auto; }
  .side {
    width: 100%; flex-direction: row; flex-wrap: nowrap;
    overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch;
    gap: 6px; padding: 8px 10px; border-right: none; border-bottom: 1px solid #26262e;
  }
  .side button { flex: 0 0 auto; width: auto; white-space: nowrap; }
  .side .sep { display: none; }
  .main { padding: 16px 12px; width: 100%; min-width: 0; }
  .pos, .pos-grid { grid-template-columns: 1fr !important; }
  .pos-cart { position: static; top: auto; }
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .main h2.pg { font-size: 21px; }
}
@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr; }
}

/* POS billing, POS store & dine-in: stack the cart under the products on
   tablet/phone, and drop the sticky cart so it doesn't overlap */
@media (max-width: 980px) {
  .pos { grid-template-columns: 1fr; }
  .pos-grid { grid-template-columns: 1fr !important; }
  .pos-cart { position: static; top: auto; }
}
/* staff panels: sidebar becomes a scrollable top strip, content full width */
@media (max-width: 860px) {
  .panel { flex-direction: column; }
  .side { width: 100%; flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 4px; padding: 8px; }
  .side button { white-space: nowrap; width: auto; flex: 0 0 auto; }
  .side .sep { display: none; }
  .main { padding: 14px 12px; }
}

/* ==================== PRINTER MANAGEMENT MODULE STYLES ==================== */
.printer-mod {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.pm-head-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 169, 78, 0.25);
  background: rgba(23, 23, 29, 0.75);
  backdrop-filter: blur(12px);
}
.pm-head-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold2);
  margin: 0;
}
.pm-head-sub {
  font-size: 13px;
  color: var(--muted);
}
.pm-head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Printer Navigation Tabs */
.pm-subnav-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.pm-subnav-wrap::-webkit-scrollbar {
  height: 4px;
}
.pm-subnav-wrap::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 4px;
}
.pm-subnav {
  display: flex;
  gap: 8px;
  min-width: max-content;
}
.pm-nav-btn {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid rgba(212, 169, 78, 0.2);
  background: rgba(30, 30, 38, 0.6);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.pm-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold2);
  background: rgba(212, 169, 78, 0.12);
}
.pm-nav-btn.active {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #120e08;
  font-weight: 700;
  border-color: var(--gold2);
  box-shadow: 0 4px 14px rgba(212, 169, 78, 0.35);
}

/* Cards Grid */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.pm-card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(23, 23, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.pm-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-dim);
}
.pm-ic { font-size: 26px; margin-bottom: 6px; }
.pm-val { font-size: 20px; font-weight: 700; color: var(--gold2); }
.pm-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }

.pm-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(92, 157, 224, 0.3);
  background: rgba(20, 30, 45, 0.6);
}
.pm-banner h4 { color: var(--blue); margin-bottom: 4px; font-size: 16px; }
.pm-banner p { font-size: 13px; color: var(--text); opacity: 0.9; margin: 0; }

/* Printer List Rows */
.pm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(23, 23, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s;
}
.pm-row:hover { border-color: rgba(212, 169, 78, 0.3); }
.pm-row-ic { font-size: 26px; flex-shrink: 0; }
.pm-row-main { flex: 1; min-width: 0; }
.pm-row-name { font-size: 16px; font-weight: 600; color: var(--text); display: flex; align-items: center; }
.pm-row-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.pm-row-act { display: flex; gap: 8px; flex-shrink: 0; }

.pm-status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 6px currentColor;
}

/* Forms & Inputs */
.pm-form {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(23, 23, 29, 0.75);
  border: 1px solid rgba(212, 169, 78, 0.2);
}
.pm-form h3 { color: var(--gold2); margin-bottom: 16px; font-size: 18px; }
.pm-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.pm-err {
  padding: 10px 14px;
  background: rgba(224, 92, 92, 0.15);
  border: 1px solid var(--red);
  color: #fca5a5;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 13px;
}
.pm-hint {
  padding: 12px 16px;
  background: rgba(212, 169, 78, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 13px;
  color: var(--gold2);
}
.pm-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pm-chk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.pm-chk input { width: auto; }

/* Print Queue & History */
.pm-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(23, 23, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}
.pm-chip {
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.pm-chip.pending { background: rgba(92, 157, 224, 0.2); color: var(--blue); border: 1px solid var(--blue); }
.pm-chip.printing { background: rgba(212, 169, 78, 0.2); color: var(--gold); border: 1px solid var(--gold); }
.pm-chip.completed { background: rgba(76, 175, 125, 0.2); color: var(--green); border: 1px solid var(--green); }
.pm-chip.failed { background: rgba(224, 92, 92, 0.2); color: var(--red); border: 1px solid var(--red); }
.pm-chip.cancelled { background: rgba(155, 147, 127, 0.2); color: var(--muted); border: 1px solid var(--muted); }

.pm-hist-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-hist {
  display: grid;
  grid-template-columns: 90px 1.5fr 1fr 1fr 1.2fr 90px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
}

.pm-test-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-bt-box {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(92, 157, 224, 0.25);
}

.pm-tr {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.pm-tr summary { font-weight: 600; color: var(--gold2); cursor: pointer; }
.pm-tr p { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* Toast Alerts */
.pm-toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.pm-toast-card {
  pointer-events: auto;
  min-width: 260px;
  max-width: 380px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(18, 18, 24, 0.92);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  animation: pmToastIn 0.25s ease-out;
}
.pm-toast-title { font-weight: 700; color: var(--gold2); font-size: 14px; }
.pm-toast-msg { font-size: 12px; color: var(--text); margin-top: 2px; opacity: 0.9; }

@keyframes pmToastIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* driver-setup ordered steps */
.pm-steps { margin: 8px 0 0; padding-left: 22px; line-height: 1.9; font-size: 13.5px; }
.pm-steps li { margin-bottom: 4px; }
.pm-steps code { background: rgba(255,255,255,0.08); padding: 1px 5px; border-radius: 4px; font-size: 12px; }

/* layout helpers used by the printer module */
.pm-content { margin-top: 14px; }
.pm-note {
  padding: 12px 16px; border-radius: 12px; font-size: 13px; line-height: 1.5;
  background: rgba(212, 169, 78, 0.10); border: 1px solid var(--gold-dim); color: var(--text);
}
.pm-trouble { display: flex; flex-direction: column; gap: 10px; }
.pm-full { display: block; }
.pm-full input { width: 100%; }
.pm-bar { margin-bottom: 10px; }
.pm-job-main { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pm-hist-doc { font-size: 13px; }
.pm-banner-main { flex: 1; }
.pm-banner-main h4 { margin: 0 0 4px; color: var(--gold2); }
.pm-banner-main p { margin: 0; font-size: 13px; opacity: 0.9; }
.pm-banner { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 14px; flex-wrap: wrap; }
.mt { margin-top: 12px; } .mb { margin-bottom: 12px; }
.flex.spread { display: flex; justify-content: space-between; }
.flex.gap { gap: 10px; } .align-center { align-items: center; }

@media (max-width: 768px) {
  .pm-row { flex-direction: column; align-items: flex-start; }
  .pm-row-act { width: 100%; justify-content: flex-end; margin-top: 8px; }
  .pm-hist { grid-template-columns: 1fr; gap: 4px; }
  .pm-head-bar { flex-direction: column; align-items: flex-start; }
  .pm-banner { flex-direction: column; align-items: flex-start; }
}

