:root{
  --bg:#f7f2e9;
  --bg-strong:#efe6d8;
  --surface:rgba(255,255,255,.84);
  --surface-solid:#fffdf8;
  --surface-deep:#10263d;
  --surface-deep-2:#163754;
  --accent:#c58a3a;
  --accent-soft:#f2ddb8;
  --accent-wash:#f8efe0;
  --ink:#1f1a16;
  --muted:#655a4e;
  --muted-strong:#4f453b;
  --line:rgba(35,24,14,.12);
  --line-strong:rgba(35,24,14,.2);
  --success:#2f9f62;
  --shadow-sm:0 12px 28px rgba(16,38,61,.08);
  --shadow-md:0 22px 60px rgba(16,38,61,.14);
  --shadow-lg:0 35px 90px rgba(16,38,61,.18);
  --radius-xs:12px;
  --radius-sm:18px;
  --radius-md:26px;
  --radius-lg:36px;
  --display:'Cormorant Garamond',serif;
  --body:'Manrope',sans-serif;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  background:
    radial-gradient(circle at top left, rgba(242,221,184,.95), transparent 28%),
    radial-gradient(circle at top right, rgba(22,55,84,.09), transparent 26%),
    linear-gradient(180deg, #fbf7f0 0%, #f5eee3 50%, #f7f2e9 100%);
  line-height:1.65;
  font-size:16px;
  position:relative;
  min-height:100vh;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.28), transparent 46%),
    radial-gradient(circle at 15% 18%, rgba(255,255,255,.34), transparent 12%);
  pointer-events:none;
  z-index:-1;
}

img{display:block;max-width:100%}

picture{display:contents}

a{color:inherit}

button,
input,
textarea,
select{font:inherit}

h1,h2,h3,h4{
  font-family:var(--display);
  font-weight:600;
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0;
}

p{margin:0}

section{padding:0 0 88px}

.wrap{
  width:min(1140px, calc(100% - 48px));
  margin:0 auto;
}

.zari{
  width:min(1140px, calc(100% - 48px));
  height:1px;
  margin:0 auto;
  background:linear-gradient(90deg, transparent, rgba(197,138,58,.8), transparent);
  opacity:.8;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--surface-deep-2);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.76rem;
  font-weight:800;
  margin-bottom:18px;
}

.eyebrow::before{
  content:"";
  width:30px;
  height:1px;
  background:currentColor;
  opacity:.55;
}

.section-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  max-width:700px;
  margin:0 auto 42px;
}

.section-head h2{
  font-size:clamp(2.2rem, 4vw, 3.5rem);
}

.section-head p{
  color:var(--muted);
  font-size:1.02rem;
}

.section-shell{
  position:relative;
}

.section-shell.alt .section-card{
  background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,250,243,.94));
}

.section-card{
  background:var(--surface);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-md);
  padding:38px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.01em;
  transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover,
.btn:focus-visible{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--accent), #d8a455);
  color:#1b1611;
  box-shadow:0 14px 35px rgba(197,138,58,.28);
}

.btn-primary:hover,
.btn-primary:focus-visible{
  box-shadow:0 18px 40px rgba(197,138,58,.34);
}

.btn-secondary{
  background:rgba(255,255,255,.1);
  color:#fff;
  border-color:rgba(255,255,255,.34);
}

.btn-secondary:hover,
.btn-secondary:focus-visible{
  background:rgba(255,255,255,.17);
}

.btn-light{
  background:#fff;
  color:var(--surface-deep);
  border-color:rgba(16,38,61,.08);
  box-shadow:var(--shadow-sm);
}

.btn-light:hover,
.btn-light:focus-visible{
  border-color:rgba(16,38,61,.16);
}

.btn-dark{
  background:var(--surface-deep);
  color:#fff;
  box-shadow:0 16px 36px rgba(16,38,61,.2);
}

.btn-dark:hover,
.btn-dark:focus-visible{
  background:var(--surface-deep-2);
}

.btn-outline{
  background:transparent;
  color:var(--surface-deep);
  border-color:rgba(16,38,61,.16);
}

.btn-outline:hover,
.btn-outline:focus-visible{
  background:rgba(16,38,61,.05);
}

.topbar{
  position:sticky;
  top:0;
  z-index:30;
  padding:20px 0 16px;
}

.topbar-shell{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(255,255,255,.45);
  border-radius:26px;
  padding:16px 20px;
  backdrop-filter:blur(20px);
  box-shadow:0 18px 45px rgba(16,38,61,.12);
}

.brand-link{
  display:inline-flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:0;
}

.brand-mark{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg, var(--surface-deep), var(--surface-deep-2));
  color:var(--accent-soft);
  font-family:var(--display);
  font-size:1.5rem;
  letter-spacing:.04em;
  box-shadow:0 16px 34px rgba(16,38,61,.18);
}

.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-copy strong{
  font-size:1.1rem;
  font-weight:800;
}

.brand-copy span{
  color:var(--muted);
  font-size:.86rem;
  white-space:nowrap;
}

.main-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.main-nav a{
  text-decoration:none;
  padding:10px 16px;
  border-radius:999px;
  color:var(--muted-strong);
  font-weight:700;
  transition:background-color .25s ease, color .25s ease, transform .25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible{
  background:rgba(16,38,61,.08);
  color:var(--surface-deep);
  transform:translateY(-1px);
}

.top-actions{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-end;
}

.call-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  background:var(--surface-deep);
  color:#fff;
  font-weight:800;
  box-shadow:0 14px 34px rgba(16,38,61,.18);
  transition:transform .25s ease, background-color .25s ease;
}

.call-pill:hover,
.call-pill:focus-visible{
  background:var(--surface-deep-2);
  transform:translateY(-2px);
}

.hero{
  padding:32px 0 88px;
}

.hero-shell{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(242,221,184,.24), transparent 32%),
    linear-gradient(135deg, #0d2438 0%, #153654 56%, #23496a 100%);
  border-radius:42px;
  padding:clamp(32px, 5vw, 56px);
  box-shadow:var(--shadow-lg);
}

.hero-shell::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-120px;
  top:-120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(242,221,184,.2), transparent 65%);
}

.hero-shell::after{
  content:"";
  position:absolute;
  inset:auto auto -120px -70px;
  width:320px;
  height:320px;
  border-radius:40px;
  background:linear-gradient(135deg, rgba(255,255,255,.06), transparent);
  transform:rotate(24deg);
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:46px;
  align-items:center;
}

.hero-copy{
  color:#fff;
}

.hero-copy .eyebrow{
  color:var(--accent-soft);
}

.hero-copy h1{
  font-size:clamp(3rem, 7vw, 5.7rem);
  margin-bottom:18px;
  max-width:11ch;
}

.hero-copy .lead{
  font-size:1.08rem;
  color:rgba(255,255,255,.82);
  max-width:54ch;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-badges span,
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.88);
  font-weight:700;
  font-size:.93rem;
}

.hero-visual{
  position:relative;
  min-height:100%;
}

.hero-main-photo{
  border-radius:32px;
  overflow:hidden;
  min-height:520px;
  box-shadow:0 26px 65px rgba(0,0,0,.28);
  position:relative;
  isolation:isolate;
}

.hero-main-photo::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:42%;
  background:linear-gradient(180deg, transparent, rgba(10,18,26,.5));
}

.hero-main-photo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(12,29,45,.2), transparent 38%),
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 24%);
  z-index:1;
  pointer-events:none;
}

.hero-main-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.08) contrast(1.04) brightness(1.01);
  transform:scale(1.01);
}

.hero-card{
  position:absolute;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.55);
  border-radius:24px;
  padding:18px 20px;
  box-shadow:0 18px 40px rgba(10,18,26,.18);
}

.hero-card strong{
  display:block;
  color:var(--surface-deep);
  font-size:1.08rem;
  margin-bottom:4px;
}

.hero-card p{
  color:var(--muted);
  font-size:.95rem;
}

.hero-rating{
  left:-28px;
  bottom:38px;
  max-width:230px;
}

.hero-detail{
  right:-12px;
  top:30px;
  max-width:240px;
}

.home-highlights{
  margin-top:-44px;
  position:relative;
  z-index:2;
}

.stat-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.stat-card{
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.5);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-sm);
}

.stat-card .label{
  display:block;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.74rem;
  font-weight:800;
  margin-bottom:8px;
}

.stat-card strong{
  display:block;
  font-size:1.22rem;
  color:var(--surface-deep);
  margin-bottom:6px;
}

.stat-card p{
  color:var(--muted);
  font-size:.94rem;
}

.intro-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:26px;
  align-items:stretch;
}

.intro-copy{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,249,240,.94));
  border:1px solid rgba(255,255,255,.5);
  border-radius:32px;
  padding:36px;
  box-shadow:var(--shadow-md);
}

.intro-copy h2{
  font-size:clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom:18px;
}

.intro-copy p{
  color:var(--muted);
  font-size:1rem;
}

.intro-list{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:14px;
}

.intro-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--muted-strong);
}

.intro-list li::before{
  content:"";
  width:10px;
  height:10px;
  margin-top:9px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), #e3bc7b);
  box-shadow:0 0 0 6px rgba(197,138,58,.12);
  flex:none;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.benefit-card{
  background:var(--surface-solid);
  border:1px solid rgba(16,38,61,.08);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}

.benefit-card .mono{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(16,38,61,.95), rgba(22,55,84,.82));
  color:var(--accent-soft);
  font-weight:800;
  letter-spacing:.08em;
}

.benefit-card h3{
  font-size:1.6rem;
  margin-bottom:10px;
}

.benefit-card p{
  color:var(--muted);
  font-size:.96rem;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.room{
  background:var(--surface-solid);
  border:1px solid rgba(16,38,61,.08);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  display:flex;
  flex-direction:column;
}

.room-media{
  position:relative;
  aspect-ratio:1.05/.88;
  overflow:hidden;
}

.room-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(10,18,26,.14) 100%),
    linear-gradient(135deg, rgba(12,29,45,.08), transparent 45%);
  pointer-events:none;
}

.room-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.08) contrast(1.04) brightness(1.02);
  transition:transform .5s ease;
}

.room:hover .room-media img{
  transform:scale(1.06);
}

.room-badge{
  position:absolute;
  left:18px;
  top:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:var(--surface-deep);
  font-size:.82rem;
  font-weight:800;
  box-shadow:0 10px 24px rgba(10,18,26,.12);
}

.room-body{
  padding:26px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.room-body h3{
  font-size:2rem;
  margin-bottom:10px;
}

.room-price{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin-bottom:18px;
}

.room-price strong{
  color:var(--surface-deep);
  font-size:1.45rem;
}

.room-price span{
  color:var(--muted);
  font-size:.94rem;
}

.room-copy{
  color:var(--muted);
  margin-bottom:18px;
}

.room-points{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:10px;
}

.room-points li{
  color:var(--muted-strong);
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.room-points li::before{
  content:"";
  width:8px;
  height:8px;
  margin-top:10px;
  border-radius:50%;
  background:var(--accent);
  flex:none;
}

.room-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.room-tags span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:var(--accent-wash);
  color:var(--surface-deep-2);
  font-size:.84rem;
  font-weight:700;
}

.room-body .btn{
  margin-top:auto;
}

.facil-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.facil-item{
  background:var(--surface-solid);
  border:1px solid rgba(16,38,61,.08);
  border-radius:26px;
  padding:26px;
  box-shadow:var(--shadow-sm);
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.facil-item .ic{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(197,138,58,.18), rgba(197,138,58,.34));
  color:var(--surface-deep);
  font-weight:800;
  letter-spacing:.08em;
  flex:none;
}

.facil-item strong{
  display:block;
  font-size:1.06rem;
  color:var(--surface-deep);
  margin-bottom:4px;
}

.facil-item p{
  color:var(--muted);
  font-size:.94rem;
}

.gallery-shell .section-head{
  margin-bottom:26px;
}

.gallery-note{
  text-align:center;
  color:var(--muted);
  margin-bottom:28px;
}

.gal-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  grid-auto-rows:96px;
  gap:14px;
}

.gal-tile{
  padding:0;
  border:none;
  border-radius:24px;
  overflow:hidden;
  cursor:pointer;
  background:#ddd;
  box-shadow:var(--shadow-sm);
  position:relative;
}

.gal-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent, rgba(10,18,26,.14));
  opacity:0;
  transition:opacity .25s ease;
}

.gal-tile:hover::after,
.gal-tile:focus-visible::after{
  opacity:1;
}

.gal-tile img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:saturate(1.05) contrast(1.02);
  transition:transform .45s ease;
}

.gal-tile:hover img,
.gal-tile:focus-visible img{
  transform:scale(1.05);
}

.gal-grid > :nth-child(6n+1){grid-column:span 4;grid-row:span 3}
.gal-grid > :nth-child(6n+2){grid-column:span 4;grid-row:span 2}
.gal-grid > :nth-child(6n+3){grid-column:span 4;grid-row:span 2}
.gal-grid > :nth-child(6n+4){grid-column:span 3;grid-row:span 2}
.gal-grid > :nth-child(6n+5){grid-column:span 5;grid-row:span 3}
.gal-grid > :nth-child(6n+6){grid-column:span 4;grid-row:span 2}

.gallery-actions{
  text-align:center;
  margin-top:28px;
}

.btn-more{
  cursor:pointer;
}

.btn-more:disabled{
  cursor:default;
  opacity:.72;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(0, 1.08fr);
  gap:22px;
  align-items:stretch;
}

.contact-card{
  background:linear-gradient(180deg, #10314c 0%, #173d5c 100%);
  color:#fff;
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow-lg);
}

.contact-card .eyebrow{
  color:var(--accent-soft);
}

.contact-card h2{
  font-size:clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom:14px;
}

.contact-card > p{
  color:rgba(255,255,255,.82);
  margin-bottom:24px;
}

.contact-stack{
  display:grid;
  gap:18px;
  margin-bottom:28px;
}

.contact-block{
  padding:20px 22px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}

.contact-block .label{
  display:block;
  color:var(--accent-soft);
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:.72rem;
  font-weight:800;
  margin-bottom:10px;
}

.contact-block strong{
  display:block;
  font-size:1.08rem;
  margin-bottom:6px;
}

.contact-block p,
.contact-block address{
  color:rgba(255,255,255,.84);
  font-style:normal;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.map-card{
  background:var(--surface);
  border:1px solid rgba(255,255,255,.45);
  border-radius:34px;
  padding:18px;
  box-shadow:var(--shadow-md);
}

.map-card iframe{
  width:100%;
  min-height:100%;
  height:100%;
  border:0;
  border-radius:24px;
}

.map-link{
  margin-top:16px;
}

footer{
  padding:0 0 42px;
}

.footer-shell{
  background:linear-gradient(135deg, #0f263c, #173952);
  color:#fff;
  border-radius:32px;
  padding:30px;
  box-shadow:var(--shadow-lg);
}

.footer-grid{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.footer-brand .brand-mark{
  width:48px;
  height:48px;
}

.footer-brand strong{
  display:block;
  font-size:1.08rem;
}

.footer-brand span,
.footer-copy,
.footer-links a{
  color:rgba(255,255,255,.75);
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
}

.footer-links a{
  text-decoration:none;
  font-weight:700;
}

.footer-links a:hover,
.footer-links a:focus-visible{
  color:var(--accent-soft);
}

.footer-copy{
  text-align:right;
  font-size:.92rem;
}

.wa-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:20;
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  box-shadow:0 18px 34px rgba(37,211,102,.28);
  transition:transform .25s ease, box-shadow .25s ease;
}

.wa-float:hover,
.wa-float:focus-visible{
  transform:translateY(-3px);
  box-shadow:0 22px 40px rgba(37,211,102,.34);
}

.wa-float svg{
  width:32px;
  height:32px;
  fill:#fff;
}

.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(10,15,21,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.lightbox[hidden]{display:none}

.lightbox img{
  max-width:min(1100px, 92vw);
  max-height:86vh;
  border-radius:24px;
  box-shadow:0 26px 60px rgba(0,0,0,.45);
}

.lb-btn{
  position:absolute;
  width:52px;
  height:52px;
  border:none;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  color:#fff;
  cursor:pointer;
  font-size:1.55rem;
  transition:background-color .25s ease, transform .25s ease;
}

.lb-btn:hover,
.lb-btn:focus-visible{
  background:rgba(255,255,255,.24);
  transform:scale(1.04);
}

.lb-close{top:18px;right:18px}
.lb-prev{left:18px;top:50%;transform:translateY(-50%)}
.lb-next{right:18px;top:50%;transform:translateY(-50%)}
.lb-prev:hover,
.lb-prev:focus-visible,
.lb-next:hover,
.lb-next:focus-visible{transform:translateY(-50%) scale(1.04)}

.room-hero{
  padding:32px 0 72px;
}

.crumb{
  display:inline-flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
  color:rgba(255,255,255,.72);
  font-size:.9rem;
}

.crumb a{
  color:var(--accent-soft);
  text-decoration:none;
}

.crumb a:hover,
.crumb a:focus-visible{
  text-decoration:underline;
}

.room-hero .hero-copy h1{
  max-width:12ch;
}

.price-big{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:10px;
  margin-bottom:18px;
}

.price-big strong{
  font-size:2rem;
  color:var(--accent-soft);
}

.price-big span{
  color:rgba(255,255,255,.72);
  font-size:.98rem;
}

.room-facts{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 30px;
}

.room-facts span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-weight:700;
}

.room-hero .hero-main-photo{
  min-height:440px;
}

.detail-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.28fr) minmax(300px, .72fr);
  gap:24px;
  align-items:start;
}

.detail-card{
  background:var(--surface);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow-md);
}

.detail-card + .detail-card{
  margin-top:22px;
}

.detail-head{
  margin-bottom:22px;
}

.detail-gap{
  margin-top:26px;
}

.detail-head h2{
  font-size:2.4rem;
  margin-bottom:10px;
}

.detail-head p{
  color:var(--muted);
}

.spec-table{
  width:100%;
  border-collapse:collapse;
  background:rgba(255,255,255,.54);
  border-radius:24px;
  overflow:hidden;
}

.spec-table th,
.spec-table td{
  padding:16px 18px;
  text-align:left;
  border-bottom:1px solid rgba(35,24,14,.08);
}

.spec-table tr:last-child th,
.spec-table tr:last-child td{
  border-bottom:none;
}

.spec-table th{
  width:38%;
  background:rgba(197,138,58,.11);
  color:var(--surface-deep);
  font-weight:800;
}

.spec-table td{
  color:var(--muted-strong);
}

.amen{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 16px;
}

.amen li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted-strong);
}

.amen li::before{
  content:"";
  width:9px;
  height:9px;
  margin-top:9px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), #e3bc7b);
  flex:none;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  grid-auto-rows:110px;
  gap:14px;
}

.room-gallery-grid > :nth-child(5n+1){grid-column:span 6;grid-row:span 3}
.room-gallery-grid > :nth-child(5n+2){grid-column:span 3;grid-row:span 2}
.room-gallery-grid > :nth-child(5n+3){grid-column:span 3;grid-row:span 2}
.room-gallery-grid > :nth-child(5n+4){grid-column:span 4;grid-row:span 2}
.room-gallery-grid > :nth-child(5n+5){grid-column:span 8;grid-row:span 2}

.book-card{
  position:sticky;
  top:112px;
}

.book-card h3{
  font-size:2rem;
  margin-bottom:10px;
}

.book-card .p{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:8px;
  margin-bottom:8px;
}

.book-card .p strong{
  font-size:1.65rem;
  color:var(--surface-deep);
}

.book-card .p span,
.book-card .off,
.book-card small{
  color:var(--muted);
}

.book-card .off{
  margin-bottom:18px;
}

.book-card .btn{
  width:100%;
  margin-bottom:12px;
}

.book-card small{
  display:block;
  font-size:.9rem;
  line-height:1.7;
}

.book-note{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(35,24,14,.08);
}

.other-rooms .room-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
  max-width:760px;
  margin:0 auto;
}

.muted-copy{
  color:var(--muted);
}

@media (prefers-reduced-motion:no-preference){
  .hero-copy,
  .hero-visual,
  .stat-card,
  .benefit-card,
  .room,
  .facil-item,
  .contact-card,
  .map-card,
  .detail-card{
    animation:lift-in .85s ease both;
  }

  .hero-visual{animation-delay:.08s}
  .stat-card:nth-child(2){animation-delay:.05s}
  .stat-card:nth-child(3){animation-delay:.1s}
  .stat-card:nth-child(4){animation-delay:.15s}
}

@keyframes lift-in{
  from{
    opacity:0;
    transform:translateY(24px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

:focus-visible{
  outline:3px solid rgba(197,138,58,.9);
  outline-offset:3px;
}

@media (max-width:1080px){
  .topbar-shell,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .topbar-shell{
    justify-items:center;
    text-align:center;
  }

  .brand-copy span{
    white-space:normal;
  }

  .top-actions,
  .footer-copy{
    justify-content:center;
    text-align:center;
  }

  .hero-grid,
  .intro-grid,
  .detail-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .room-hero .hero-copy h1,
  .hero-copy h1{
    max-width:none;
  }

  .hero-main-photo,
  .room-hero .hero-main-photo{
    min-height:420px;
  }

  .hero-rating{
    left:20px;
    bottom:20px;
  }

  .hero-detail{
    right:20px;
    top:20px;
  }

  .stat-grid,
  .room-grid,
  .facil-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:720px){
  section{
    padding-bottom:68px;
  }

  .wrap{
    width:min(100% - 24px, 1140px);
  }

  .topbar{
    padding-top:12px;
  }

  .topbar-shell{
    padding:14px;
    gap:14px;
    border-radius:22px;
  }

  .main-nav{
    width:100%;
    overflow:auto hidden;
    justify-content:flex-start;
    flex-wrap:nowrap;
    padding-bottom:4px;
  }

  .main-nav a{
    white-space:nowrap;
  }

  .top-actions{
    width:100%;
    flex-direction:column;
  }

  .call-pill,
  .top-actions .btn,
  .hero-actions .btn,
  .contact-actions .btn{
    width:100%;
  }

  .hero,
  .room-hero{
    padding-top:18px;
  }

  .hero-shell,
  .section-card,
  .detail-card,
  .contact-card,
  .map-card,
  .footer-shell{
    border-radius:28px;
    padding:24px;
  }

  .hero-copy h1{
    font-size:clamp(2.6rem, 12vw, 4rem);
  }

  .hero-copy .lead{
    font-size:1rem;
  }

  .hero-main-photo,
  .room-hero .hero-main-photo{
    min-height:320px;
  }

  .hero-card{
    position:static;
    margin-top:14px;
    max-width:none;
  }

  .home-highlights{
    margin-top:-28px;
  }

  .stat-grid,
  .benefit-grid,
  .room-grid,
  .facil-grid,
  .amen,
  .other-rooms .room-grid{
    grid-template-columns:1fr;
  }

  .gal-grid,
  .room-gallery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-auto-rows:130px;
  }

  .gal-grid > *,
  .room-gallery-grid > *{
    grid-column:span 1 !important;
    grid-row:span 1 !important;
  }

  .gal-grid > :first-child,
  .room-gallery-grid > :first-child{
    grid-column:span 2 !important;
    grid-row:span 2 !important;
  }

  .facil-item{
    padding:22px;
  }

  .book-card{
    position:static;
    top:auto;
  }

  .lb-btn{
    width:46px;
    height:46px;
  }

  .lb-prev{left:10px}
  .lb-next{right:10px}
  .lb-close{top:10px;right:10px}
}

/* ==========================================================
   MOBILE NAVIGATION
   ========================================================== */

.nav-toggle{
  display:none;
  width:50px;
  height:50px;
  border:1px solid rgba(16,38,61,.12);
  border-radius:16px;
  background:rgba(255,255,255,.9);
  cursor:pointer;
  padding:0;
  place-items:center;
  gap:5px;
  box-shadow:var(--shadow-sm);
  transition:background-color .25s ease, transform .25s ease;
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:2px;
  background:var(--surface-deep);
  transition:transform .3s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle.is-open span:nth-child(2){opacity:0}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.nav-drawer{
  position:fixed;
  inset:0;
  z-index:60;
  background:rgba(9,18,28,.5);
  backdrop-filter:blur(4px);
  opacity:0;
  transition:opacity .28s ease;
}

.nav-drawer.show{opacity:1}
.nav-drawer[hidden]{display:none}

.nav-panel{
  position:absolute;
  inset:0 0 0 auto;
  width:min(360px, 88vw);
  background:linear-gradient(180deg, #fffdf8, #f6efe4);
  padding:24px 22px calc(24px + env(safe-area-inset-bottom));
  display:flex;
  flex-direction:column;
  gap:8px;
  box-shadow:-24px 0 60px rgba(9,18,28,.28);
  transform:translateX(100%);
  transition:transform .32s cubic-bezier(.22,.8,.28,1);
  overflow-y:auto;
}

.nav-drawer.show .nav-panel{transform:translateX(0)}

.nav-close{
  align-self:flex-end;
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:rgba(16,38,61,.07);
  color:var(--surface-deep);
  font-size:1.6rem;
  line-height:1;
  cursor:pointer;
}

.nav-links{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-top:8px;
}

.nav-links a{
  text-decoration:none;
  font-weight:800;
  font-size:1.15rem;
  color:var(--surface-deep);
  padding:14px 16px;
  border-radius:16px;
  transition:background-color .2s ease;
}

.nav-links a:active,
.nav-links a:hover{background:rgba(16,38,61,.06)}

.nav-links .nav-sub{
  font-size:.98rem;
  font-weight:700;
  color:var(--muted-strong);
  padding:12px 16px;
}

.nav-links .nav-sub:first-of-type{
  margin-top:10px;
  border-top:1px solid var(--line);
  padding-top:18px;
  border-radius:0 0 16px 16px;
}

.nav-foot{
  margin-top:auto;
  padding-top:20px;
  display:grid;
  gap:10px;
}

body.nav-open,
body.lb-open{overflow:hidden}

/* ==========================================================
   STICKY MOBILE BOOKING BAR
   ========================================================== */

.mobile-bar{
  display:none;
  position:fixed;
  left:10px;
  right:10px;
  bottom:calc(10px + env(safe-area-inset-bottom));
  z-index:40;
  align-items:center;
  gap:8px;
  padding:10px 10px 10px 16px;
  border-radius:22px;
  background:rgba(255,253,248,.94);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.6);
  box-shadow:0 18px 44px rgba(16,38,61,.22);
  transition:transform .32s cubic-bezier(.22,.8,.28,1), opacity .25s ease;
}

.mobile-bar.hide{
  transform:translateY(140%);
  opacity:0;
}

.mobile-bar-info{
  display:flex;
  flex-direction:column;
  line-height:1.25;
  margin-right:auto;
  min-width:0;
}

.mobile-bar-info strong{
  font-size:1.05rem;
  color:var(--surface-deep);
}

.mobile-bar-info span{
  font-size:.78rem;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.mobile-bar .btn{
  min-height:46px;
  padding:0 16px;
  font-size:.92rem;
  flex:none;
}

/* ==========================================================
   PREMIUM GALLERY + LIGHTBOX
   ========================================================== */

.gal-tile{
  background:linear-gradient(135deg, #ece3d6, #dfd3c2);
}

.gal-tile::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.28);
  pointer-events:none;
}

/* photos are colour-graded at source now — no CSS filters needed */
.gal-tile img,
.room-media img,
.hero-main-photo img{
  filter:none;
}

.gal-tile:hover,
.gal-tile:focus-visible{
  box-shadow:var(--shadow-md);
}

.lb-stage{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  touch-action:pan-y;
}

.lightbox img{
  opacity:0;
  transform:scale(.985);
  transition:opacity .3s ease, transform .3s ease;
}

.lightbox img.in{
  opacity:1;
  transform:scale(1);
}

.lb-counter{
  position:absolute;
  left:50%;
  bottom:calc(18px + env(safe-area-inset-bottom));
  transform:translateX(-50%);
  padding:8px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.9);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.04em;
}

/* ==========================================================
   SCROLL REVEAL
   ========================================================== */

@media (prefers-reduced-motion:no-preference){
  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s cubic-bezier(.22,.8,.28,1), transform .7s cubic-bezier(.22,.8,.28,1);
  }

  .reveal.seen{
    opacity:1;
    transform:none;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.001ms !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================== */

@media (max-width:900px){
  .topbar-shell{
    grid-template-columns:1fr auto;
    justify-items:stretch;
    text-align:left;
    gap:12px;
  }

  .main-nav,
  .top-actions{
    display:none;
  }

  .nav-toggle{
    display:grid;
    justify-self:end;
  }
}

@media (max-width:720px){
  body{
    padding-bottom:86px;   /* clearance for the sticky booking bar */
  }

  .mobile-bar{
    display:flex;
  }

  .wa-float{
    bottom:calc(84px + env(safe-area-inset-bottom));
    width:54px;
    height:54px;
  }

  .wa-float svg{
    width:28px;
    height:28px;
  }

  .topbar-shell{
    padding:12px 14px;
  }

  .brand-mark{
    width:44px;
    height:44px;
    border-radius:15px;
    font-size:1.25rem;
  }

  .brand-copy strong{font-size:1rem}
  .brand-copy span{font-size:.8rem}

  .section-head h2{
    font-size:clamp(1.9rem, 8vw, 2.6rem);
  }

  .room-body h3,
  .benefit-card h3{
    font-size:1.6rem;
  }

  .gal-grid,
  .room-gallery-grid{
    grid-auto-rows:0;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .gal-grid > *,
  .room-gallery-grid > *{
    aspect-ratio:3/4;
    border-radius:18px;
    grid-row:auto !important;
  }

  .gal-grid > :first-child,
  .room-gallery-grid > :first-child{
    aspect-ratio:1/1;
    grid-row:auto !important;
  }

  .lightbox{
    padding:0;
  }

  .lightbox img{
    max-width:100vw;
    max-height:82vh;
    border-radius:0;
  }

  .lb-btn{
    background:rgba(255,255,255,.18);
  }

  .lb-prev,
  .lb-next{
    display:none;   /* swipe instead */
  }

  .lb-close{
    top:calc(12px + env(safe-area-inset-top));
    right:12px;
  }
}

@media (max-width:420px){
  .wrap{
    width:min(100% - 20px, 1140px);
  }

  .hero-shell,
  .section-card,
  .detail-card,
  .contact-card,
  .map-card,
  .footer-shell{
    border-radius:24px;
    padding:20px;
  }

  .hero-copy h1{
    font-size:clamp(2.2rem, 11vw, 3rem);
  }

  .mobile-bar{
    padding-left:14px;
  }

  .mobile-bar-info strong{font-size:.98rem}

  .mobile-bar .btn{
    min-height:44px;
    padding:0 13px;
    font-size:.86rem;
  }
}

/* landscape phones: keep the lightbox usable */
@media (max-height:520px) and (orientation:landscape){
  .lightbox img{max-height:92vh}
  .mobile-bar{display:none}
}

/* wide desktops get a little more room */
@media (min-width:1440px){
  .wrap{
    width:min(1240px, calc(100% - 64px));
  }
}

/* respect notches */
@supports(padding:max(0px)){
  .topbar{
    padding-left:max(0px, env(safe-area-inset-left));
    padding-right:max(0px, env(safe-area-inset-right));
  }
}
