/* =========================================================
   Bhakta Niwas, Koraput — "Tirtha" devotional aesthetic
   Warm sandstone paper · temple maroon · marigold saffron
   ========================================================= */

:root{
  --paper:      #FBF6EC;
  --paper-2:    #F4EAD6;
  --paper-3:    #EEDFC4;
  --ink:        #2B211A;
  --ink-soft:   #6B5A4A;
  --maroon:     #7A2E22;
  --maroon-deep:#5A1E15;
  --saffron:    #E0922F;
  --saffron-br: #F2A93C;
  --gold:       #C29A4B;
  --gold-soft:  #D8BC7E;
  --teal:       #1F5E58;
  --teal-deep:  #143E3A;
  --line:       rgba(43,33,26,.14);
  --line-soft:  rgba(43,33,26,.08);
  --wa:         #1FA855;
  --wa-deep:    #138a43;
  --shadow:     0 18px 50px -22px rgba(90,30,21,.45);
  --shadow-sm:  0 8px 24px -14px rgba(90,30,21,.4);
  --radius:     18px;
  --maxw:       1140px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mukta", system-ui, -apple-system, sans-serif;
  --or-serif: "Noto Serif Oriya", serif;
  --or-sans:  "Noto Sans Oriya", sans-serif;
}

/* ---------- Odia language mode ---------- */
html[lang="or"] body{ font-family: var(--or-sans); }
html[lang="or"] h1,html[lang="or"] h2,html[lang="or"] h3,
html[lang="or"] .title-or,html[lang="or"] .brand-or{ font-family: var(--or-serif); }
[lang="or"]{ font-family: var(--or-sans); }
.title-or,.brand-or{ font-family: var(--or-serif); }

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--sans);
  color:var(--ink);
  background-color:var(--paper);
  background-image:
    radial-gradient(120% 60% at 85% -10%, rgba(240,169,60,.18), transparent 60%),
    radial-gradient(80% 50% at -10% 5%, rgba(31,94,88,.07), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; color:inherit; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(18px,5vw,34px); }

/* ---------- Typography ---------- */
h1,h2,h3{ font-family:var(--serif); font-weight:600; line-height:1.08; letter-spacing:-.01em; color:var(--ink); }
h2{ font-size:clamp(1.8rem,4.2vw,2.9rem); }
h3{ font-size:1.22rem; font-weight:600; }
.kicker{
  font-family:var(--sans); font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  font-size:.72rem; color:var(--maroon); margin-bottom:.7rem;
  display:inline-flex; align-items:center; gap:.6em;
}
.kicker::before{ content:""; width:26px; height:1px; background:var(--gold); display:inline-block; }

.skip-link{
  position:absolute; left:14px; top:-60px; z-index:200;
  background:var(--maroon); color:#fff; padding:.6rem 1rem; border-radius:0 0 10px 10px;
  transition:top .2s;
}
.skip-link:focus{ top:0; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--sans); font-weight:600; font-size:.98rem; letter-spacing:.01em;
  padding:.78rem 1.35rem; border-radius:999px; line-height:1;
  transition:transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px) scale(.99); }
.btn-primary{ background:linear-gradient(165deg,var(--saffron-br),var(--maroon)); color:#fff; box-shadow:0 12px 26px -12px rgba(122,46,34,.7); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -12px rgba(122,46,34,.8); }
.btn-whatsapp{ background:var(--wa); color:#fff; box-shadow:0 12px 26px -14px rgba(19,138,67,.8); }
.btn-whatsapp:hover{ transform:translateY(-2px); background:var(--wa-deep); }
.btn-outline{ border:1.5px solid var(--maroon); color:var(--maroon); background:rgba(255,255,255,.4); }
.btn-outline:hover{ background:var(--maroon); color:#fff; }
.btn-call{ background:var(--paper-3); color:var(--maroon); padding:.55rem 1rem; }
.btn-call:hover{ background:var(--maroon); color:#fff; }
.btn-lg{ padding:1rem 1.7rem; font-size:1.06rem; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--paper); /* solid — backdrop-filter breaks fixed/sticky on iOS Safari */
  border-bottom:1px solid var(--line-soft);
  transition:box-shadow .25s, background .25s;
}
.site-header.scrolled{ box-shadow:0 6px 24px -18px rgba(90,30,21,.6); background:var(--paper); }
.header-inner{ display:flex; align-items:center; gap:1rem; min-height:68px; }
.brand{ display:flex; align-items:center; gap:.6rem; margin-right:auto; }
.brand-mark{ color:var(--maroon); display:grid; place-items:center; flex:none; }
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-or{ font-family:var(--or-serif); font-size:.78rem; color:var(--maroon); letter-spacing:.02em; }
.brand-en{ font-family:var(--serif); font-weight:600; font-size:1.15rem; color:var(--ink); }

.nav{ display:flex; gap:.3rem; align-items:center; }
.nav a{
  font-weight:500; font-size:.96rem; padding:.45rem .7rem; border-radius:8px; color:var(--ink-soft);
  position:relative; transition:color .2s;
}
.nav a:hover{ color:var(--maroon); }
.nav a::after{
  content:""; position:absolute; left:.7rem; right:.7rem; bottom:.25rem; height:1.5px;
  background:var(--saffron); transform:scaleX(0); transform-origin:left; transition:transform .25s;
}
.nav a:hover::after{ transform:scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:.55rem; }
.lang-toggle{
  display:inline-flex; align-items:center; gap:.3em; font-size:.82rem; font-weight:600;
  padding:.4rem .6rem; border:1px solid var(--line); border-radius:999px; color:var(--ink-soft);
  transition:border-color .2s,color .2s;
}
.lang-toggle:hover{ border-color:var(--maroon); color:var(--maroon); }
.lang-toggle .lang-sep{ opacity:.4; }
.lang-toggle .active{ color:var(--maroon); }
.lang-or{ font-family:var(--or-sans); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; padding:.5rem; }
.nav-toggle span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero{ position:relative; padding:clamp(2.6rem,6vw,5rem) 0 clamp(2.4rem,5vw,4rem); overflow:hidden; }
.hero-glow{
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(50% 42% at 72% 18%, rgba(242,169,60,.28), transparent 70%);
}
.hero-grid{ position:relative; z-index:1; display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.eyebrow{ display:inline-flex; align-items:center; gap:.55em; font-weight:600; letter-spacing:.16em; text-transform:uppercase; font-size:.74rem; color:var(--teal); }
.eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--saffron); box-shadow:0 0 0 4px rgba(224,146,47,.18); }
.hero h1{ font-size:clamp(2.7rem,7vw,4.6rem); margin:.5rem 0 .2rem; letter-spacing:-.02em; }
.hero h1 .title-or{ display:block; color:var(--maroon); font-size:.5em; font-weight:600; margin-bottom:.1em; }
.hero h1 .title-en{ display:block; }
.lede{ font-family:var(--serif); font-size:clamp(1.2rem,2.6vw,1.55rem); font-weight:400; font-style:italic; color:var(--maroon-deep); max-width:30ch; margin-bottom:.8rem; }
.hero-sub{ color:var(--ink-soft); max-width:46ch; margin-bottom:1.6rem; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:.7rem; margin-bottom:1.6rem; }
.trust-strip{ display:flex; flex-wrap:wrap; gap:.5rem .4rem; list-style:none; }
.trust-strip li{
  font-size:.82rem; font-weight:500; color:var(--ink); background:rgba(255,255,255,.55);
  border:1px solid var(--line-soft); padding:.4rem .8rem; border-radius:999px; position:relative; padding-left:1.6rem;
}
.trust-strip li::before{ content:"✦"; position:absolute; left:.7rem; color:var(--saffron); font-size:.7rem; top:50%; transform:translateY(-50%); }

/* Arch frame for hero photo */
.hero-media{ display:flex; justify-content:center; }
.arch-frame{
  position:relative; width:min(100%,420px);
  border-radius:210px 210px 22px 22px;
  padding:12px; background:linear-gradient(160deg,var(--gold-soft),var(--maroon));
  box-shadow:var(--shadow);
}
.arch-frame::before{
  content:""; position:absolute; inset:5px; border-radius:206px 206px 18px 18px;
  border:1px solid rgba(255,255,255,.4); pointer-events:none; z-index:2;
}
.arch-frame img{
  border-radius:200px 200px 14px 14px; width:100%; aspect-ratio:3/4; object-fit:cover;
}
.loc-pill{
  position:absolute; left:50%; bottom:-14px; transform:translateX(-50%);
  display:inline-flex; align-items:center; gap:.4em; white-space:nowrap;
  background:var(--paper); color:var(--maroon); font-size:.78rem; font-weight:600;
  padding:.5rem .9rem; border-radius:999px; box-shadow:var(--shadow-sm); border:1px solid var(--line-soft);
}
.loc-pill svg{ color:var(--saffron); }

/* ---------- Section base ---------- */
.section{ padding:clamp(3rem,7vw,5.5rem) 0; position:relative; }
.section-head{ text-align:center; margin-bottom:clamp(2rem,4vw,3rem); display:flex; flex-direction:column; align-items:center; }
.section-head .kicker{ justify-content:center; }

/* decorative divider between major sections */
.section + .section::before{
  content:"❖"; position:absolute; top:-.2rem; left:50%; transform:translateX(-50%);
  color:var(--gold); font-size:.9rem; opacity:.7;
}

/* ---------- About ---------- */
.about{ background:linear-gradient(180deg,transparent, rgba(244,234,214,.5) 40%, transparent); }
.about-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.about-copy p{ color:var(--ink-soft); }
.about-copy h2{ margin:.2rem 0 1rem; }
.about-points{ list-style:none; display:flex; flex-direction:column; gap:1rem; }
.about-points li{
  background:rgba(255,255,255,.6); border:1px solid var(--line-soft); border-left:3px solid var(--saffron);
  border-radius:14px; padding:1.1rem 1.3rem; box-shadow:var(--shadow-sm); position:relative;
}
.about-points .pt-num{ font-family:var(--serif); font-size:.85rem; color:var(--gold); position:absolute; top:1rem; right:1.2rem; letter-spacing:.1em; }
.about-points h3{ margin-bottom:.2rem; color:var(--maroon); }
.about-points p{ font-size:.94rem; color:var(--ink-soft); margin:0; }

/* ---------- Rooms ---------- */
.rooms-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1.4rem,3vw,2.2rem); }
.room-card{
  background:rgba(255,255,255,.7); border:1px solid var(--line-soft); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.room-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.room-media{ position:relative; overflow:hidden; }
.room-media img{ aspect-ratio:4/3; object-fit:cover; width:100%; transition:transform .5s ease; }
.room-card:hover .room-media img{ transform:scale(1.04); }
.arch-top::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:34px;
  background:radial-gradient(120% 100% at 50% 100%, var(--paper) 38%, transparent 39%);
}
.room-body{ padding:1.3rem 1.4rem 1.5rem; display:flex; flex-direction:column; gap:.55rem; flex:1; }
.room-body h3{ color:var(--maroon); font-size:1.4rem; }
.room-body > p{ color:var(--ink-soft); font-size:.95rem; }
.room-features{ list-style:none; display:flex; flex-direction:column; gap:.35rem; margin:.3rem 0 .4rem; }
.room-features li{ font-size:.9rem; padding-left:1.4rem; position:relative; color:var(--ink); }
.room-features li::before{ content:"✓"; position:absolute; left:0; color:var(--teal); font-weight:700; }
.room-foot{ margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding-top:.7rem; border-top:1px dashed var(--line); }
.tariff{ font-family:var(--serif); font-style:italic; color:var(--maroon-deep); font-size:.98rem; }
.rooms-note{ text-align:center; color:var(--ink-soft); font-size:.92rem; margin-top:1.6rem; font-style:italic; }

/* ---------- Amenities ---------- */
.amenities{ background:linear-gradient(180deg,transparent,rgba(31,94,88,.05),transparent); }
.amenity-grid{ list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.amenity-grid li{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:.6rem;
  background:rgba(255,255,255,.62); border:1px solid var(--line-soft); border-radius:16px;
  padding:1.4rem 1rem; font-weight:500; font-size:.92rem; transition:transform .2s, box-shadow .2s;
}
.amenity-grid li:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.am-ico{
  width:48px; height:48px; display:grid; place-items:center; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--paper), var(--paper-3));
  border:1px solid var(--gold-soft); font-size:1.3rem;
}
.amenity-note{ text-align:center; color:var(--ink-soft); margin-top:1.4rem; font-style:italic; font-size:.92rem; }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:180px; gap:.8rem; }
.gal-item{
  position:relative; overflow:hidden; border-radius:14px; padding:0; border:1px solid var(--line-soft);
  box-shadow:var(--shadow-sm); display:block;
}
.gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease, filter .3s; }
.gal-item.g-tall{ grid-row:span 2; }
.gal-item::after{
  content:"⤢"; position:absolute; right:.5rem; bottom:.4rem; width:30px; height:30px; display:grid; place-items:center;
  background:rgba(43,33,26,.55); color:#fff; border-radius:50%; opacity:0; transform:scale(.8); transition:.25s; font-size:.9rem;
}
.gal-item:hover img{ transform:scale(1.06); }
.gal-item:hover::after,.gal-item:focus-visible::after{ opacity:1; transform:scale(1); }

/* ---------- Location ---------- */
.location-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:clamp(2rem,4vw,3.5rem); align-items:stretch; }
.location-copy h2{ margin:.2rem 0 1rem; }
.location-copy > p{ color:var(--ink-soft); }
.distance-list{ list-style:none; margin:1.2rem 0 1.6rem; border-top:1px solid var(--line-soft); }
.distance-list li{ display:flex; justify-content:space-between; gap:1rem; align-items:baseline; padding:.62rem 0; border-bottom:1px solid var(--line-soft); font-size:.95rem; }
.distance-list li span{ color:var(--ink); }
.distance-list li b{ color:var(--maroon); font-weight:600; font-family:var(--serif); white-space:nowrap; }
.map-note{ font-size:.88rem; color:var(--ink-soft); font-style:italic; margin-top:1rem; }
.location-map{
  border-radius:var(--radius); overflow:hidden; min-height:340px; box-shadow:var(--shadow);
  border:6px solid #fff; outline:1px solid var(--line-soft);
}
.location-map iframe{ width:100%; height:100%; min-height:340px; display:block; }

/* ---------- Contact ---------- */
.contact{ padding-bottom:clamp(3.5rem,7vw,6rem); }
.contact-inner{ display:flex; justify-content:center; }
.contact-card{
  width:100%; max-width:760px; text-align:center;
  background:linear-gradient(165deg, rgba(122,46,34,.96), rgba(90,30,21,.98));
  color:#fdf4e6; border-radius:26px; padding:clamp(2rem,5vw,3.4rem); position:relative; overflow:hidden;
  box-shadow:var(--shadow);
}
.contact-card::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background:radial-gradient(60% 50% at 50% -10%, rgba(242,169,60,.35), transparent 60%);
}
.contact-card .kicker{ color:var(--saffron-br); justify-content:center; }
.contact-card .kicker::before{ background:var(--saffron-br); }
.contact-card h2{ color:#fff; position:relative; }
.contact-sub{ color:rgba(253,244,230,.85); max-width:48ch; margin:.8rem auto 1.7rem; position:relative; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; position:relative; margin-bottom:1.8rem; }
.contact-card .btn-primary{ background:linear-gradient(160deg,#fff,#fbe7c6); color:var(--maroon-deep); }
.contact-card .btn-primary:hover{ background:#fff; }
.contact-meta{ display:flex; flex-wrap:wrap; gap:1.4rem; justify-content:center; text-align:left; position:relative; }
.contact-meta div{ min-width:200px; }
.contact-meta dt{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--saffron-br); margin-bottom:.25rem; font-weight:600; }
.contact-meta dd{ color:#fdf4e6; font-size:.95rem; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:#e9ddcc; margin-top:1rem; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:2rem; padding-block:clamp(2.4rem,5vw,3.4rem); }
.footer-brand .brand-or{ font-family:var(--or-serif); display:block; color:var(--saffron-br); font-size:1rem; }
.footer-name{ font-family:var(--serif); font-size:1.5rem; color:#fff; display:block; margin:.1rem 0 .5rem; }
.footer-brand p{ color:#b9a892; font-size:.92rem; max-width:34ch; }
.footer-nav{ display:flex; flex-direction:column; gap:.5rem; }
.footer-nav a,.footer-contact a{ color:#cdbda7; transition:color .2s; width:fit-content; }
.footer-nav a:hover,.footer-contact a:hover{ color:var(--saffron-br); }
.footer-contact{ display:flex; flex-direction:column; gap:.5rem; font-weight:500; }
.footer-bar{ border-top:1px solid rgba(255,255,255,.1); }
.footer-bar-inner{ display:flex; flex-wrap:wrap; gap:.6rem 1.5rem; justify-content:space-between; align-items:center; padding-block:1.1rem; }
.copyright{ color:#a08c75; font-size:.85rem; }
.powered{ font-size:.85rem; color:#a08c75; display:inline-flex; align-items:center; gap:.4em; }
.guvio-credit{ display:inline-flex; align-items:center; gap:.45em; font-weight:700; letter-spacing:.02em; }
.guvio-mark{ width:20px; height:auto; display:block; flex:none; color:var(--saffron-br); }
.guvio-credit span{
  background:linear-gradient(90deg,var(--saffron-br),var(--gold-soft));
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.guvio-credit:hover span{ text-decoration:underline; text-decoration-color:var(--gold-soft); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:90; display:none; gap:.6rem; padding:.6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background:var(--paper); /* solid — backdrop-filter detaches fixed bars on iOS Safari */
  border-top:1px solid var(--line); box-shadow:0 -6px 20px -10px rgba(90,30,21,.35);
}
.mobile-bar .btn{ flex:1; }

/* ---------- Lightbox ---------- */
.lightbox{
  position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center;
  background:rgba(28,18,12,.93); padding:clamp(1rem,4vw,3rem);
  opacity:0; animation:lbIn .25s ease forwards;
}
.lightbox[hidden]{ display:none; }
@keyframes lbIn{ to{ opacity:1; } }
.lb-figure{ max-width:min(920px,100%); max-height:100%; display:flex; flex-direction:column; align-items:center; gap:.8rem; }
.lb-figure img{ max-height:78vh; width:auto; border-radius:12px; box-shadow:0 30px 80px -20px rgba(0,0,0,.7); border:5px solid #fff; }
.lb-figure figcaption{ color:#f0e6d6; font-family:var(--serif); font-style:italic; font-size:1rem; text-align:center; }
.lb-close{ position:absolute; top:1rem; right:1.3rem; color:#fff; font-size:2.4rem; line-height:1; width:48px; height:48px; border-radius:50%; }
.lb-close:hover{ background:rgba(255,255,255,.12); }
.lb-nav{ position:absolute; top:50%; transform:translateY(-50%); color:#fff; font-size:2.6rem; width:54px; height:54px; border-radius:50%; display:grid; place-items:center; transition:background .2s; }
.lb-nav:hover{ background:rgba(255,255,255,.14); }
.lb-prev{ left:1rem; } .lb-next{ right:1rem; }

/* ---------- Reveal animation (only when JS is active) ---------- */
html.js .reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay:var(--d,0s); }
html.js .reveal.in{ opacity:1; transform:none; }

/* ---------- Focus visibility ---------- */
:focus-visible{ outline:2.5px solid var(--teal); outline-offset:3px; border-radius:4px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-copy{ order:2; display:flex; flex-direction:column; align-items:center; }
  .hero-media{ order:1; margin-bottom:1.2rem; }
  .lede,.hero-sub{ max-width:50ch; }
  .eyebrow{ justify-content:center; }
  .about-grid,.location-grid{ grid-template-columns:1fr; }
  .amenity-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:760px){
  .nav{
    position:fixed; inset:68px 0 auto 0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--paper); border-bottom:1px solid var(--line); padding:.5rem 1.2rem 1.2rem;
    box-shadow:var(--shadow); transform:translateY(-130%); transition:transform .3s ease; z-index:80;
  }
  .nav.open{ transform:translateY(0); }
  .nav a{ padding:.85rem .5rem; border-bottom:1px solid var(--line-soft); font-size:1.05rem; }
  .nav a::after{ display:none; }
  .nav-toggle{ display:flex; }
  .header-call{ display:none; }
  .rooms-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:140px; }
  .mobile-bar{ display:flex; }
  body{ padding-bottom:74px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}
@media (max-width:440px){
  body{ font-size:16px; }
  .amenity-grid{ grid-template-columns:repeat(2,1fr); }
  .hero h1{ font-size:clamp(2.3rem,11vw,3rem); }
  .contact-meta{ flex-direction:column; gap:1rem; }
  .lb-prev{ left:.3rem; } .lb-next{ right:.3rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}
