/* =========================================================
   Cabana Valea Brazilor — palette & base
   Inspired by photos: warm honey wood, dark slate roof,
   forest green, sunset coral, cream paper.
   ========================================================= */
:root{
  --c-bg:        #14110d;
  --c-bg-2:      #1c1814;
  --c-paper:     #f5efe6;
  --c-paper-2:   #ece4d6;
  --c-ink:       #1a1410;
  --c-ink-soft:  #4a3f33;
  --c-muted:     #8a7e6f;
  --c-line:      #d8cdb9;

  --c-wood:      #c68b59;     /* honey */
  --c-wood-d:    #8b5a2b;
  --c-forest:    #3a5a40;
  --c-slate:     #2b3a42;
  --c-sunset:    #e8835c;
  --c-sunset-d:  #c25a36;

  --c-wa:        #25d366;
  --c-wa-d:      #128c7e;

  --shadow-sm: 0 1px 2px rgba(20,17,13,.08), 0 2px 4px rgba(20,17,13,.06);
  --shadow-md: 0 6px 16px rgba(20,17,13,.12), 0 12px 32px rgba(20,17,13,.10);
  --shadow-lg: 0 14px 40px rgba(20,17,13,.18), 0 30px 70px rgba(20,17,13,.20);

  --radius: 14px;
  --radius-lg: 22px;

  --container: 1200px;
  --container-wide: 1440px;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

/* Skip link for keyboard users */
.skip-link{
  position: absolute;
  left: 8px; top: -40px;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus{ top: 8px; outline: 2px solid var(--c-wood); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg img{ animation: none; }
  .fab-pulse{ display: none; }
  .reveal{ opacity: 1; transform: none; }
}

/* Visible focus for keyboard users */
:focus-visible{
  outline: 2px solid var(--c-wood);
  outline-offset: 3px;
  border-radius: 4px;
}
body{
  margin:0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor:pointer; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide{
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ====== Typography ====== */
.eyebrow{
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-wood-d);
  margin: 0 0 14px;
}
.eyebrow.center, .h2.center, .lead.center{ text-align:center; }
.h2{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--c-ink);
}
.lead{
  font-size: 1.1rem;
  color: var(--c-ink-soft);
  margin: 0 0 16px;
  max-width: 60ch;
}
.lead.center{ margin-left:auto; margin-right:auto; }
.muted{ color: var(--c-muted); }
.muted-w{ color: rgba(74,63,51,.7); }
.small{ font-size: .9rem; }

/* ====== Buttons ====== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary{
  background: var(--c-ink);
  color: var(--c-paper);
}
.btn-primary:hover{ background: var(--c-wood-d); }
.btn-ghost{
  background: transparent;
  color: var(--c-paper);
  border-color: rgba(245,239,230,.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover{ background: rgba(245,239,230,.12); border-color: var(--c-paper); }
.btn-large{ padding: 18px 28px; font-size: 1rem; }
.btn-wa{
  background: var(--c-wa);
  color: #fff;
}
.btn-wa:hover{ background: var(--c-wa-d); }

/* ====== Navigation ====== */
.nav{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  transition: background .3s ease, backdrop-filter .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.scrolled{
  background: rgba(245,239,230,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  padding: 10px 28px;
  box-shadow: var(--shadow-sm);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--c-paper);
  transition: color .3s;
}
.nav.scrolled .brand{ color: var(--c-ink); }
.brand-mark{
  width: 34px; height: 34px;
}
.brand-text{
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-line1{
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .85;
}
.brand-line2{
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .005em;
  margin-top: 2px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a{
  color: var(--c-paper);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  transition: color .25s;
}
.nav-links a::after{
  content:'';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after{ transform: scaleX(1); }
.nav.scrolled .nav-links a{ color: var(--c-ink); }
.nav-cta{
  padding: 10px 18px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta::after{ display:none !important; }
.nav-cta:hover{
  background: var(--c-paper);
  color: var(--c-ink) !important;
}
.nav.scrolled .nav-cta:hover{
  background: var(--c-ink);
  color: var(--c-paper) !important;
}
.nav-toggle{
  display:none;
  background:none;
  border:0;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span{
  position:absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--c-paper);
  transition: transform .3s, opacity .3s, background .3s;
}
.nav-toggle span:nth-child(1){ top: 14px; }
.nav-toggle span:nth-child(2){ top: 19px; }
.nav-toggle span:nth-child(3){ top: 24px; }
.nav.scrolled .nav-toggle span{ background: var(--c-ink); }

/* ====== Hero ====== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-paper);
  overflow: hidden;
}
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.hero-bg img{
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns{
  0%{ transform: scale(1.06) translate(0,0); }
  100%{ transform: scale(1.16) translate(-1.5%, -1.5%); }
}
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(20,17,13,.7), transparent 60%),
    linear-gradient(180deg, rgba(20,17,13,.45) 0%, rgba(20,17,13,.25) 35%, rgba(20,17,13,.75) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 880px;
}
.hero-eyebrow{
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .8rem;
  font-weight: 500;
  color: var(--c-paper-2);
  margin: 0 0 18px;
  display:inline-flex; align-items:center; gap:14px;
}
.hero-eyebrow::before, .hero-eyebrow::after{
  content:''; height:1px; width:42px; background: currentColor; opacity:.6;
}
.hero-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.hero-title span{ display:block; }
.hero-title-script{
  font-style: italic;
  font-weight: 400;
  color: var(--c-wood);
}
.hero-sub{
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 60ch;
  margin: 0 auto 36px;
  color: rgba(245,239,230,.92);
  line-height: 1.65;
}
.hero-actions{
  display:flex; gap: 14px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 56px;
}
.hero-meta{
  display:flex; align-items:center; justify-content:center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .92rem;
  color: rgba(245,239,230,.85);
}
.hero-meta div{
  display:inline-flex; flex-direction:column; align-items:center; gap: 2px;
}
.hero-meta strong{
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--c-paper);
}
.hero-meta span{
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .22em;
}
.hero-meta .dot{
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-wood);
  flex-direction: row;
}
.hero-scroll{
  position: absolute;
  bottom: 30px;
  left: 50%; transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1.5px solid rgba(245,239,230,.6);
  border-radius: 14px;
  z-index: 3;
}
.hero-scroll span{
  position:absolute;
  left: 50%; top: 8px;
  width: 2px; height: 8px;
  background: var(--c-paper);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{ transform: translate(-50%, 0); opacity:1; }
  60%{ transform: translate(-50%, 14px); opacity:0; }
  100%{ transform: translate(-50%, 0); opacity:0; }
}

/* ====== Sections ====== */
.section{
  padding: 110px 0;
  position: relative;
}
.section-about{ background: var(--c-paper); }
.section-gallery{ background: var(--c-paper-2); padding-bottom: 130px; }
.section-amenities{
  background: var(--c-bg);
  color: var(--c-paper);
}
.section-amenities .h2{ color: var(--c-paper); }
.section-amenities .eyebrow{ color: var(--c-wood); }
.section-location{ background: var(--c-paper); }
.section-booking{
  background:
    linear-gradient(180deg, var(--c-paper-2) 0%, var(--c-paper) 100%);
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.col{ min-width: 0; }
.signature{
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--c-wood-d);
}
.signature em{ font-size: 1.25rem; }

/* About frame stack */
.frame-stack{
  position: relative;
  aspect-ratio: 4/5;
}
.frame{
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 6px solid var(--c-paper);
}
.frame-1{
  width: 78%; height: 75%;
  top: 0; right: 0;
  z-index: 1;
}
.frame-2{
  width: 60%; height: 55%;
  bottom: 0; left: 0;
  z-index: 2;
  border-color: var(--c-paper-2);
}

/* Stat bar */
.stat-bar{
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat{
  display:flex; flex-direction: column;
  border-left: 2px solid var(--c-wood);
  padding-left: 18px;
}
.stat-num{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-paper);
}
.stat-lbl{
  font-size: .82rem;
  color: rgba(245,239,230,.7);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: 4px;
}

/* ====== Gallery ====== */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 50px;
}
.g-item{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-paper);
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
}
.g-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s ease;
}
.g-item:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.g-item:hover img{ transform: scale(1.07); }
.g-item::after{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
  opacity:0;
  transition: opacity .35s;
}
.g-item:hover::after{ opacity:1; }
.g-tall{ grid-row: span 2; }
.g-wide{ grid-column: span 2; }

/* ====== Amenities ====== */
.amenities-grid{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.am{
  padding: 32px 26px;
  border: 1px solid rgba(245,239,230,.08);
  border-radius: var(--radius);
  background: rgba(245,239,230,.025);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.am:hover{
  transform: translateY(-4px);
  background: rgba(198,139,89,.08);
  border-color: rgba(198,139,89,.3);
}
.am-i{
  width: 36px; height: 36px;
  color: var(--c-wood);
  margin-bottom: 16px;
}
.am h3{
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--c-paper);
}
.am p{
  margin: 0;
  font-size: .92rem;
  color: rgba(245,239,230,.7);
  line-height: 1.55;
}

/* ====== Location ====== */
.loc-list{
  list-style: none;
  padding: 0;
  margin: 26px 0 24px;
  display: grid;
  gap: 10px;
}
.loc-list li{
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-line);
  display: flex; gap: 14px; align-items:baseline;
  font-size: 1rem;
  color: var(--c-ink-soft);
}
.loc-list li strong{
  color: var(--c-wood-d);
  min-width: 70px;
  font-weight: 700;
}
.map-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/4.4;
}
.map-card iframe{
  width:100%; height:100%; border:0;
  filter: saturate(.95) contrast(1.02);
}
.map-pill{
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--c-paper);
  color: var(--c-ink);
  padding: 10px 16px;
  border-radius: 999px;
  display:inline-flex; align-items:center; gap: 8px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: .9rem;
}
.map-pill svg{ color: var(--c-sunset-d); }

/* ====== Booking ====== */
.booking-card{
  margin-top: 56px;
  background: var(--c-paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px 44px 36px;
  border: 1px solid var(--c-line);
  max-width: 980px;
}
.booking{ display:flex; flex-direction:column; gap: 22px; }
.b-row{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.b-field{
  display:flex; flex-direction:column;
  gap: 6px;
}
.b-field-full{ grid-column: 1 / -1; }
.b-field span{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-wood-d);
  font-weight: 600;
}
.b-field input,
.b-field select,
.b-field textarea{
  font: inherit;
  padding: 14px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: 10px;
  background: #fff;
  color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.b-field textarea{ resize: vertical; min-height: 80px; }
.b-field input:focus,
.b-field select:focus,
.b-field textarea:focus{
  outline: none;
  border-color: var(--c-wood);
  box-shadow: 0 0 0 4px rgba(198,139,89,.12);
}
.b-field input.invalid,
.b-field select.invalid{
  border-color: var(--c-sunset-d);
  box-shadow: 0 0 0 4px rgba(226,90,54,.10);
}

.b-summary{
  background: var(--c-paper-2);
  border-radius: 12px;
  padding: 18px 20px;
  display:flex; flex-direction: column; gap: 6px;
  border-left: 3px solid var(--c-wood);
}
.b-sum-row{
  display:flex; justify-content:space-between;
  font-size: .95rem;
}
.b-sum-row span{ color: var(--c-ink-soft); }
.b-sum-row strong{ color: var(--c-ink); font-weight: 600; }
.b-sum-total{
  border-top: 1px dashed var(--c-line);
  padding-top: 8px;
  margin-top: 4px;
}
.b-sum-total strong{
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--c-wood-d);
}

.b-actions{
  display:flex; gap: 12px; flex-wrap: wrap; align-items:center;
  margin-top: 4px;
}
.b-note{ margin: 6px 0 0; font-size: .85rem; }

/* ====== Footer ====== */
.footer{
  background: var(--c-bg);
  color: var(--c-paper-2);
  padding: 80px 0 30px;
}
.footer h4{
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--c-paper);
  margin: 0 0 14px;
}
.footer p{ margin: 0 0 8px; font-size: .92rem; color: rgba(245,239,230,.72); }
.footer a:hover{ color: var(--c-wood); }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.brand-footer{ color: var(--c-paper); margin-bottom: 14px; }
.footer-bottom{
  display:flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,230,.08);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p{ margin: 0; }

/* ====== Floating WhatsApp ====== */
.fab-wa{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .25s ease, background .25s ease;
}
.fab-wa svg{ width: 30px; height: 30px; position: relative; z-index: 2; }
.fab-wa:hover{ background: var(--c-wa-d); transform: scale(1.06); }
.fab-pulse{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--c-wa);
  opacity: .6;
  animation: pulse 2s infinite;
  z-index: 1;
}
@keyframes pulse{
  0%{ transform: scale(1); opacity: .55; }
  80%{ transform: scale(1.6); opacity: 0; }
  100%{ transform: scale(1.6); opacity: 0; }
}

/* ====== Lightbox ====== */
.lightbox[hidden]{ display: none !important; }
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20,17,13,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  animation: lbIn .25s ease;
}
@keyframes lbIn{ from{ opacity:0; } to{ opacity:1; } }
.lightbox figure{
  margin: 0;
  max-width: 95vw;
  max-height: 88vh;
  display:flex; flex-direction:column; align-items:center; gap: 14px;
}
.lightbox img{
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.lightbox figcaption{
  color: var(--c-paper-2);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}
.lb-close, .lb-prev, .lb-next{
  position: absolute;
  background: rgba(245,239,230,.1);
  color: var(--c-paper);
  border: 1px solid rgba(245,239,230,.25);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover{
  background: rgba(245,239,230,.22);
  transform: scale(1.05);
}
.lb-close{ top: 22px; right: 22px; }
.lb-prev{ left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next{ right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover{ transform: translateY(-50%) scale(1.05); }
.lb-next:hover{ transform: translateY(-50%) scale(1.05); }

/* ====== Toast ====== */
.toast[hidden]{ display: none !important; }
.toast{
  position: fixed;
  left: 50%; top: 30px;
  transform: translateX(-50%) translateY(-20px);
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 14px 22px;
  border-radius: 10px;
  border-left: 3px solid var(--c-wood);
  box-shadow: var(--shadow-lg);
  z-index: 110;
  font-size: .95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  max-width: 90vw;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success{ border-color: var(--c-wa); }
.toast.error{ border-color: var(--c-sunset-d); }

/* ====== Reveal animations ====== */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 1024px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .stat-grid{ grid-template-columns: repeat(2, 1fr); }
  .amenities-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .two-col{ gap: 50px; }
}
@media (max-width: 768px){
  .nav{ padding: 14px 18px; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: var(--c-paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ color: var(--c-ink) !important; font-size: 1.1rem; }
  .nav-toggle{ display:block; z-index: 60; }
  .nav-toggle.open span:nth-child(1){ transform: translateY(5px) rotate(45deg); background: var(--c-ink); }
  .nav-toggle.open span:nth-child(2){ opacity: 0; }
  .nav-toggle.open span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); background: var(--c-ink); }

  .hero-content{ padding: 110px 22px 80px; }
  .section{ padding: 70px 0; }
  .two-col{ grid-template-columns: 1fr; gap: 40px; }
  .frame-stack{ aspect-ratio: 1.1/1; }
  .gallery{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .g-wide{ grid-column: span 2; }
  .stat-grid{ grid-template-columns: 1fr; }
  .amenities-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .b-row{ grid-template-columns: 1fr; }
  .booking-card{ padding: 28px 22px; }
  .lb-close{ top: 14px; right: 14px; }
  .lb-prev{ left: 6px; }
  .lb-next{ right: 6px; }
  .hero-meta{ gap: 14px; }
  .hero-meta .dot{ display:none; }
}
@media (max-width: 420px){
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ justify-content: center; }
  .brand-line2{ font-size: 1.2rem; }
}
