/* ===================================================================
   Happy Paradise Lodge — Design System
   Deep jungle-green canvas (from the logo's palm foliage) with cream
   cards and gold accents. Fraunces (display) + Manrope (body).
=================================================================== */

:root{
  /* Deep jungle green canvas end-to-end, taken from the logo's palm-frond
     foliage — no competing section blocks. Cream cards float on top for
     content that needs strong readability (rooms, amenities, services). */
  --bg:         #12281b;   /* the ONE page canvas, top to bottom */
  --bg-soft:    #193422;   /* faint lift for headers/overlays on the canvas */
  --text-light:      #f4efe1;  /* headings/body directly on the green canvas */
  --text-light-soft: #b7c4ae;  /* secondary text directly on the green canvas */

  --ink:        #16261d;   /* dark text used INSIDE light cream cards */
  --ink-soft:   #46584a;   /* muted dark text used INSIDE light cream cards */
  --jungle-900: #1c2e22;   /* deep jungle green: overlays, icon backgrounds */

  --sunset-500: #3a6b4a;  /* jungle green — accent inside cards */
  --sunset-600: #24462f;  /* deep jungle green — hover/dark accent inside cards */
  --gold-400:   #c98f3f;
  --gold-300:   #dba24a;  /* primary accent directly on the green canvas */

  --cream-100:  #fdfaf3;   /* card surface, lightest */
  --cream-200:  #f7efde;   /* card surface, alt */
  --cream-300:  #efe1c4;   /* subtle surface tint (cards, alt rows) */
  --cream-400:  #e4d2ac;   /* borders / hairlines inside cards */
  --paper:      #f7efdb;

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --container: 1220px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.68,0,1.01);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); margin:0; font-weight:600; }

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* film-grain overlay for warmth */
.grain-overlay{
  position: fixed; inset:0; pointer-events:none; z-index: 999;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity:0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing:.01em;
  border: 1.5px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-3px); }
.btn-whatsapp{
  background: linear-gradient(135deg,#2fb37c,#1e8f5e);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(30,143,94,.55);
}
.btn-whatsapp:hover{ box-shadow: 0 16px 30px -8px rgba(30,143,94,.65); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color:#fff;
}
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-ghost{
  background: transparent;
  border-color: var(--cream-400);
  color: var(--ink);
}
.btn-ghost:hover{ background: var(--cream-300); }
.btn-small{ padding: 9px 18px; font-size:.82rem; }
.btn-lg{ padding: 18px 34px; font-size: 1.05rem; margin: 22px 0 30px; }

/* =================== HEADER =================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled{
  background: rgba(18,40,27,.88);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px -14px rgba(0,0,0,.35);
  padding: 12px 0;
}
.header-inner{
  max-width: var(--container);
  margin:0 auto;
  padding: 0 clamp(20px,5vw,56px);
  display:flex; align-items:center; justify-content:space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-logo{
  width: 46px; height:46px; border-radius:50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.site-header.scrolled .brand-logo{ width: 40px; height:40px; }
.brand-name{
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  transition: color .4s var(--ease);
}
.brand-name em{ font-style: italic; font-weight:500; color: var(--gold-300); }
.site-header.scrolled .brand-name{ color: var(--text-light); }

.main-nav{ display:flex; gap: 34px; }
.mobile-wa{ display:none; }
.main-nav a{
  color:#fff; font-weight:600; font-size:.95rem;
  position:relative; padding: 4px 0;
  transition: color .3s;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-3px; width:0; height:2px;
  background: var(--gold-300); transition: width .35s var(--ease);
}
.main-nav a:hover::after{ width:100%; }
.site-header.scrolled .main-nav a{ color: var(--text-light); }
.site-header.scrolled .main-nav a::after{ background: var(--gold-300); }

.header-actions{ display:flex; align-items:center; gap:10px; }
.social-pill{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.14); color:#fff;
  transition: background .3s, transform .3s, color .3s;
}
.social-pill:hover{ transform: translateY(-2px); background: var(--gold-300); color: var(--ink); }
.site-header.scrolled .social-pill{ background: rgba(255,255,255,.1); color: var(--text-light); }
.site-header.scrolled .social-pill:hover{ background: var(--gold-300); color: var(--ink); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; cursor:pointer;
  position: relative; z-index: 60;
}
.nav-toggle span{
  width: 24px; height:2px; background:#fff; transition: all .3s var(--ease);
}
.site-header.scrolled .nav-toggle span{ background: var(--text-light); }

/* =================== HERO =================== */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex; align-items:flex-end;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 75%;
  transform: scale(1.06);
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(8,16,11,.96) 0%, rgba(9,17,12,.82) 32%, rgba(10,18,13,.62) 55%, rgba(12,18,13,.4) 75%, rgba(14,18,12,.28) 100%);
}
.hero-content{
  position:relative; z-index:2;
  max-width: var(--container);
  margin: 0 auto;
  width:100%;
  padding: 0 clamp(20px,5vw,56px) clamp(70px,10vw,120px);
  color:#fff;
}
.eyebrow{
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight:700;
  color: var(--gold-300);
  margin: 0 0 14px;
}
.hero-title{
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: .95;
  font-weight: 600;
  display:flex; flex-direction:column;
  margin-bottom: 22px;
}
.hero-title span{
  font-style: italic; font-weight:500;
  font-size: .55em;
  color: var(--gold-300);
  margin-top: .05em;
}
.hero-sub{
  max-width: 560px;
  font-size: 1.12rem;
  line-height:1.6;
  color: rgba(255,255,255,.88);
  margin-bottom: 34px;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; }

.scroll-cue{
  position:absolute; bottom: 28px; left:50%; transform: translateX(-50%);
  z-index:2; width:26px; height:44px; border:2px solid rgba(255,255,255,.6);
  border-radius: 20px; display:flex; justify-content:center; padding-top:8px;
}
.scroll-cue span{
  width:4px; height:8px; border-radius:2px; background: var(--gold-300);
  animation: cueMove 1.8s ease-in-out infinite;
}
@keyframes cueMove{
  0%{ transform: translateY(0); opacity:1; }
  70%{ transform: translateY(12px); opacity:0; }
  100%{ opacity:0; }
}

/* =================== SECTION SHARED =================== */
section{ position:relative; padding: clamp(70px,10vw,120px) 0; }
.eyebrow.center, .section-title.center, .section-sub.center{ text-align:center; }
.section-title{
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  margin-bottom: 18px;
  color: var(--text-light);
}
.section-sub{
  max-width: 620px; margin: 0 auto 10px;
  color: var(--text-light-soft); font-size: 1.05rem; line-height:1.6;
}

/* One continuous canvas color for every section below the hero.
   Rhythm comes from whitespace, card surfaces and hairline rules —
   never from a hard background-color change between sections. */
.intro, .alojamiento, .amenidades, .galeria, .servicios, .contacto{
  border-top: 1px solid rgba(255,255,255,.08);
}

/* =================== INTRO =================== */
.intro-grid{
  display:grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px,5vw,70px);
  align-items:center;
}
.intro-copy h2{
  font-size: clamp(1.9rem,3.6vw,2.7rem);
  color: var(--text-light);
  margin: 10px 0 20px;
  line-height:1.15;
}
.intro-copy .lead{ font-size:1.08rem; line-height:1.75; color: var(--text-light-soft); }
.intro-figure{
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.45);
  position:relative;
}
.intro-figure::after{
  content:""; position:absolute; inset:0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.15);
  border-radius: inherit;
}
.intro-figure img{ width:100%; height:100%; object-fit:cover; }

/* =================== ALOJAMIENTO =================== */
.rooms{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 56px;
}
.room-card{
  background: var(--cream-100);
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 30px 60px -34px rgba(18,28,21,.3);
  display:flex; flex-direction:column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.room-card:hover{ transform: translateY(-8px); box-shadow: 0 40px 70px -30px rgba(18,28,21,.38); }
.room-gallery{ position:relative; cursor: pointer; }
.room-img-main{ width:100%; height: 280px; object-fit:cover; transition: transform .6s var(--ease); }
.room-gallery:hover .room-img-main{ transform: scale(1.04); }
.room-thumbs{
  position:absolute; bottom:14px; right:14px;
  display:flex; gap:8px;
}
.room-thumbs img{
  width:64px; height:64px; object-fit:cover; border-radius: 12px;
  border: 2.5px solid rgba(255,255,255,.85);
  box-shadow: 0 8px 18px rgba(0,0,0,.3);
}
.room-gallery-badge{
  position:absolute; top:14px; left:14px;
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(23,17,10,.6); backdrop-filter: blur(6px);
  color:#fff; font-size:.8rem; font-weight:600;
  padding: 8px 14px; border-radius:999px;
  opacity:0; transform: translateY(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.room-gallery:hover .room-gallery-badge{ opacity:1; transform: translateY(0); }
.room-info{ padding: 30px 32px 34px; flex:1; display:flex; flex-direction:column; }
.room-badge{
  display:inline-block; align-self:flex-start;
  background: var(--gold-300); color: var(--ink);
  font-weight:700; font-size:.75rem; letter-spacing:.06em; text-transform:uppercase;
  padding: 6px 14px; border-radius:999px; margin-bottom: 14px;
}
.room-info h3{ font-size:1.7rem; color: var(--ink); margin-bottom:10px; }
.room-info > p{ color: var(--ink-soft); line-height:1.65; margin-bottom: 18px; }
.room-features{ margin-bottom: 26px; display:flex; flex-direction:column; gap:9px; }
.room-features li{
  position:relative; padding-left: 26px; color: var(--ink-soft); font-weight:600; font-size:.95rem;
}
.room-features li::before{
  content:"✓"; position:absolute; left:0; top:0;
  color: var(--sunset-500); font-weight:800;
}
.room-actions{ margin-top:auto; display:flex; flex-wrap:wrap; gap:12px; }

/* =================== AMENIDADES =================== */
.amenity-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:24px;
  margin-top:54px;
}
.amenity-card{
  background: var(--cream-100);
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 18px 40px -30px rgba(18,28,21,.3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.amenity-card:hover{ transform: translateY(-6px); box-shadow: 0 26px 46px -26px rgba(18,28,21,.35); }
.amenity-icon{
  width:54px; height:54px; border-radius:50%;
  background: linear-gradient(135deg, var(--sunset-500), var(--gold-400));
  color: var(--cream-100);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.amenity-card h3{ font-size:1.15rem; margin-bottom:8px; color: var(--ink); }
.amenity-card p{ font-size:.92rem; color: var(--ink-soft); line-height:1.55; margin:0; }

.dog-note{
  margin-top: 30px;
  display:flex; align-items:center; gap:24px;
  background: var(--cream-100);
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: 0 18px 40px -30px rgba(18,28,21,.3);
}
.dog-note img{
  width:76px; height:76px; border-radius:50%; object-fit:cover; flex-shrink:0;
  border: 3px solid var(--gold-300);
}
.dog-note + .dog-note{ margin-top: 16px; }
.dog-note-icon{
  width:76px; height:76px; border-radius:50%; flex-shrink:0;
  background: linear-gradient(135deg, var(--sunset-500), var(--gold-400));
  color: var(--cream-100);
  display:flex; align-items:center; justify-content:center;
}
.dog-note p{ margin:0; color: var(--ink-soft); line-height:1.6; font-size:.98rem; }
.dog-note strong{ color: var(--sunset-600); }

/* =================== GALERÍA =================== */
/* True masonry via CSS columns: each tile keeps its natural aspect ratio,
   so columns settle at different heights with zero leftover gaps. */
.gallery-grid{
  max-width: var(--container);
  margin: 54px auto 0;
  padding: 0 clamp(20px,5vw,56px);
  column-count: 4;
  column-gap: 14px;
}
.g-item{
  width:100%; display:block; border-radius: 16px;
  margin: 0 0 14px;
  break-inside: avoid;
  cursor: zoom-in;
  transition: transform .5s var(--ease), filter .5s;
}
.g-item:hover{ transform: scale(1.015); filter: brightness(1.05) saturate(1.1); }

/* =================== SERVICIOS =================== */
.service-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap:24px; margin-top:54px;
}
.service-card{
  background: var(--cream-100);
  border: 1px solid var(--cream-400);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: 0 20px 45px -30px rgba(18,28,21,.28);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 50px -25px rgba(18,28,21,.32); }
.service-icon{
  width:52px; height:52px; border-radius: 14px;
  background: var(--ink); color: var(--gold-300);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.service-card h3{ font-size:1.2rem; color: var(--ink); margin-bottom:8px; }
.service-card p{ color: var(--ink-soft); font-size:.94rem; line-height:1.55; margin-bottom:16px; }
.service-card > a{ font-weight:700; color: var(--sunset-600); font-size:.92rem; }
.service-card > a:hover{ text-decoration: underline; }

/* =================== CONTACTO =================== */
.contact-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,70px);
  align-items:stretch;
}
.contact-info .section-title{ text-align:left; margin-top:10px; }
.contact-list{ display:flex; flex-direction:column; gap:16px; margin-top: 10px; }
.contact-list li{ display:flex; align-items:center; gap:14px; color: var(--text-light-soft); }
.contact-list svg{ color: var(--gold-300); flex-shrink:0; }
.contact-list a:hover{ text-decoration: underline; }
.contact-map{
  border-radius: var(--radius-lg); overflow:hidden; min-height:340px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.45);
  filter: sepia(12%) saturate(85%) hue-rotate(-6deg);
}

/* =================== FOOTER =================== */
.site-footer{ background: var(--bg-soft); color: var(--text-light-soft); padding: 50px 0 26px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.site-footer .brand-name{ color: var(--text-light); }
.site-footer .brand-name em{ color: var(--gold-300); }
.footer-nav{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-nav a{ font-size:.9rem; font-weight:600; color: var(--text-light-soft); }
.footer-nav a:hover{ color: var(--gold-300); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color: var(--text-light);
  transition: background .3s, color .3s;
}
.footer-social a:hover{ background: var(--gold-300); color: var(--ink); }
.footer-fine{ text-align:center; font-size:.82rem; margin: 24px 0 0; color: var(--text-light-soft); opacity:.7; }

/* =================== WHATSAPP FLOAT =================== */
.wa-float{
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 60px; height:60px; border-radius:50%;
  background: linear-gradient(135deg,#2fb37c,#1e8f5e);
  color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -8px rgba(30,143,94,.6);
  animation: floatPulse 2.6s ease-in-out infinite;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.wa-float.is-hidden{ opacity:0; transform: scale(.7); pointer-events:none; }
@keyframes floatPulse{
  0%,100%{ box-shadow: 0 14px 30px -8px rgba(30,143,94,.6); }
  50%{ box-shadow: 0 14px 30px -8px rgba(30,143,94,.9), 0 0 0 10px rgba(30,143,94,.12); }
}

/* =================== LIGHTBOX =================== */
.lightbox{
  position: fixed; inset:0; z-index: 900;
  background: rgba(15,20,17,.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .35s var(--ease);
  padding: 40px;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:100%; max-height: 88vh; border-radius: 10px; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top: 24px; right: 28px;
  background:none; border:none; color:#fff; font-size: 2.4rem; cursor:pointer; line-height:1;
}

/* =================== ROOM DETAIL MODAL =================== */
.room-modal{
  position: fixed; inset:0; z-index: 950;
  background: rgba(20,13,8,.7);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .35s var(--ease);
  padding: 24px;
}
.room-modal.is-open{ opacity:1; visibility:visible; }
.room-modal-panel{
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  max-width: 980px; width:100%; max-height: 90vh;
  overflow-y: auto;
  position:relative;
  box-shadow: 0 50px 100px rgba(20,13,8,.5);
  display:grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.room-modal-close{
  position:absolute; top:16px; right:16px; z-index:5;
  width:40px; height:40px; border-radius:50%;
  background: rgba(20,13,8,.55); color:#fff; border:none;
  font-size: 1.8rem; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.room-modal-media{
  position:relative; grid-column: 1; grid-row: 1 / span 2;
  background: var(--ink); height: 540px;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.room-modal-media img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.room-modal-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:42px; height:42px; border-radius:50%;
  background: rgba(20,13,8,.5); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s;
}
.room-modal-nav:hover{ background: var(--sunset-500); }
.room-modal-nav.prev{ left:14px; }
.room-modal-nav.next{ right:14px; }
.room-modal-count{
  position:absolute; top:14px; right:14px;
  background: rgba(20,13,8,.55); color:#fff; font-size:.78rem; font-weight:600;
  padding: 5px 12px; border-radius:999px;
}
.room-modal-thumbs{
  grid-column:1; grid-row: 2;
  display:flex; gap:8px; overflow-x:auto; padding: 12px;
  background: var(--ink);
  align-self:end;
}
.room-modal-thumbs img{
  width:56px; height:56px; object-fit:cover; border-radius:10px; flex-shrink:0;
  cursor:pointer; opacity:.55; transition: opacity .25s;
  border: 2px solid transparent;
}
.room-modal-thumbs img:hover{ opacity:.85; }
.room-modal-thumbs img.is-active{ opacity:1; border-color: var(--sunset-500); }
.room-modal-info{
  grid-column:2; grid-row: 1 / span 2;
  padding: 40px 40px 36px;
  display:flex; flex-direction:column;
}
.room-modal-info h3{ font-family: var(--font-display); font-size:1.8rem; color: var(--ink); margin: 12px 0 12px; }
.room-modal-info > p{ color: var(--ink-soft); line-height:1.7; margin-bottom:20px; }
.room-modal-info .room-features{ margin-bottom: 26px; }
.room-modal-info .btn{ margin-top:auto; align-self:flex-start; }

/* =================== RESPONSIVE ROOM MODAL =================== */
@media (max-width: 820px){
  .room-modal{ padding: 12px; }
  .room-modal-panel{ grid-template-columns: 1fr; max-height: 94vh; }
  .room-modal-media{ grid-column:1; grid-row:1; height: 300px; }
  .room-modal-thumbs{ grid-column:1; grid-row:2; }
  .room-modal-info{ grid-column:1; grid-row:3; padding: 28px 20px 32px; overflow-wrap: break-word; word-wrap: break-word; }
  .room-modal-info .btn{ align-self:stretch; text-align:center; justify-content:center; white-space:normal; }
}

/* ===================================================================
   RESPONSIVE
=================================================================== */
@media (max-width: 980px){
  .main-nav{ display:none; }
  .header-actions{ display:none; }
  .nav-toggle{ display:flex; margin-left:auto; }

  .site-header.nav-open .main-nav{
    display:flex; flex-direction:column; align-items:center; gap:22px;
    position:fixed; inset:0; top:0;
    background: var(--jungle-900);
    padding-top: 120px;
    z-index:50;
  }
  .site-header.nav-open .main-nav a{ color:#fff; font-size:1.3rem; }
  .site-header.nav-open .main-nav::after{
    content:"";
    display:block;
  }
  .site-header.nav-open .main-nav{ padding-bottom: 60px; }
  .site-header.nav-open .main-nav a.mobile-wa{
    margin-top: 12px;
    display:inline-flex; align-items:center; gap:.6em;
    background: linear-gradient(135deg,#2fb37c,#1e8f5e);
    color:#fff; padding: 14px 28px; border-radius:999px; font-size:1rem;
  }
  .site-header.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  .site-header.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
  .site-header.nav-open .nav-toggle span{ background:#fff; }

  .intro-grid{ grid-template-columns:1fr; }
  .intro-figure{ order:-1; aspect-ratio: 16/10; }

  .rooms{ grid-template-columns:1fr; }
  .amenity-grid{ grid-template-columns: repeat(2,1fr); }
  .service-grid{ grid-template-columns: repeat(2,1fr); }

  .gallery-grid{ column-count: 3; }

  .contact-grid{ grid-template-columns:1fr; }
  .contact-map{ min-height: 320px; }
}

@media (max-width: 620px){
  .header-actions .btn-small{ padding: 8px 14px; font-size:.78rem; }
  .brand-name{ font-size: 1rem; }

  .hero-title{ font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .hero-sub{ font-size: 1rem; }

  .amenity-grid{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; }

  .dog-note{ flex-direction:column; text-align:center; }

  .wa-float{ width:52px; height:52px; bottom:18px; right:18px; }

  .hero-media img{ object-position: center 45%; }

  .room-actions{ flex-direction:column; }
  .room-actions .btn{ width:100%; text-align:center; justify-content:center; }
  .room-actions .btn-whatsapp{ white-space:normal; word-break:break-word; }
}
