/* =================================================================
   Royal Park Guest House — Flagship Stylesheet
   Boutique hospitality · Gulshan 2, Dhaka
   ================================================================= */

:root {
  /* ---- palette ---- */
  --bg:           #faf6ef;
  --bg-alt:       #f3ece1;
  --cream:        #fdf8f0;
  --ink:          #1a1410;
  --ink-2:        #4a3e30;
  --ink-3:        #7a6b56;
  --line:         #e7dcc9;
  --line-2:       #ddcfb6;
  --wood:         #6e4a2c;
  --wood-deep:    #3a2415;
  --gold:         #b58c4d;
  --gold-2:       #d4a85f;
  --gold-soft:    #e9d6a8;
  --whatsapp:     #25d366;
  --whatsapp-2:   #1ab856;
  --danger:       #b94032;

  /* ---- shadows ---- */
  --sh-1: 0 1px 2px rgba(31,26,20,.05), 0 2px 8px rgba(31,26,20,.05);
  --sh-2: 0 4px 12px rgba(31,26,20,.06), 0 12px 32px rgba(31,26,20,.08);
  --sh-3: 0 10px 30px rgba(31,26,20,.10), 0 28px 60px rgba(31,26,20,.14);
  --sh-gold: 0 8px 24px rgba(181,140,77,.28);

  /* ---- type ---- */
  --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono:    'DM Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* ---- radius ---- */
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* ---- motion ---- */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, svg { max-width: 100%; display: block; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: var(--wood); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }
::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 4.5vw + .5rem, 4.6rem); font-weight: 500; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 2.5vw + .9rem, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, .8vw + 1rem, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--ink-2); }
p + p { margin-top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.no-line::before { display: none; }

.lead {
  font-size: clamp(1.05rem, .25vw + 1rem, 1.22rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 60ch;
}

.serif-italic { font-family: var(--display); font-style: italic; font-weight: 500; }

/* ---------- layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 2rem); }
section { position: relative; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--wood-deep); color: #f0e6d6; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: #fff; }
.section.dark .eyebrow { color: var(--gold-2); }
.section.dark .eyebrow::before { background: var(--gold-2); }
.section.dark p { color: #d6c6ad; }
.section.cream { background: var(--cream); }

.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head h2 { margin-bottom: 1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--wood-deep); color: #fff;
}
.btn-primary:hover { background: var(--gold); color: #fff; box-shadow: var(--sh-gold); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: #fff;
}
.btn-gold:hover { background: var(--wood-deep); color: #fff; box-shadow: var(--sh-2); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.btn-whatsapp {
  background: var(--whatsapp); color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-2); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
}
.btn-row.center { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 1rem 0;
  background: rgba(250, 246, 239, 0);
  transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s var(--ease);
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(250, 246, 239, .92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  padding: .55rem 0;
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(31,26,20,.06);
}
.site-header.inverse:not(.scrolled) .nav-links a,
.site-header.inverse:not(.scrolled) .brand-text strong,
.site-header.inverse:not(.scrolled) .brand-text span,
.site-header.inverse:not(.scrolled) .nav-toggle span {
  color: #fff;
}
.site-header.inverse:not(.scrolled) .brand-text span { color: rgba(255,255,255,.7); }
.site-header.inverse:not(.scrolled) .nav-toggle span { background: #fff; }
.site-header.inverse:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,.12); color: #fff !important; border: 1px solid rgba(255,255,255,.4);
}
.site-header.inverse:not(.scrolled) .nav-cta:hover { background: var(--gold); border-color: var(--gold); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--wood-deep);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-1);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 2px;
  border: 1px solid rgba(212,168,95,.4); border-radius: 8px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong {
  font-family: var(--display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink); letter-spacing: .005em;
}
.brand-text span {
  font-family: var(--mono);
  font-size: .65rem; color: var(--ink-3); letter-spacing: .25em;
  text-transform: uppercase; margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center; gap: clamp(.75rem, 1.5vw, 1.5rem);
}
.nav-links a {
  color: var(--ink); font-size: .9rem; font-weight: 500;
  padding: .4rem .15rem;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--wood-deep); color: #fff !important;
  padding: .7rem 1.4rem !important;
  border-radius: var(--r-pill); font-size: .85rem !important;
  font-weight: 600;
  margin-left: .5rem;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ---------- mobile menu ---------- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  background: var(--ink); border-radius: 1px;
  transition: transform .35s var(--ease), top .35s var(--ease), opacity .25s var(--ease), background .25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span { background: #fff; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--wood-deep);
    color: #fff;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    z-index: 100;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    color: #fff !important; font-family: var(--display);
    font-size: 1.85rem; font-weight: 500; padding: .25rem 0;
  }
  .nav-links a::after { display: none !important; }
  .nav-links .nav-cta {
    margin-top: 1.5rem !important;
    background: var(--gold) !important; color: #fff !important;
    font-family: var(--sans); font-size: .9rem !important;
    padding: .9rem 2rem !important;
  }
  body.menu-open { overflow: hidden; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
  will-change: opacity, transform;
}
.hero-bg .slide:nth-child(1) { animation-delay: 0s; }
.hero-bg .slide:nth-child(2) { animation-delay: 8s; }
.hero-bg .slide:nth-child(3) { animation-delay: 16s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.08); }
  6%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.02); }
  39%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,15,10,.45) 0%, rgba(20,15,10,.25) 35%, rgba(20,15,10,.85) 100%),
    linear-gradient(90deg, rgba(20,15,10,.55) 0%, rgba(20,15,10,.1) 60%);
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem clamp(1rem, 3vw, 2rem) 8rem;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--gold-2);
}
.hero h1 {
  color: #fff; max-width: 16ch;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(120deg, var(--gold-2), #f4d99a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  color: #f0e6d2; max-width: 55ch; margin-bottom: 2.5rem;
  font-size: clamp(1.05rem, .3vw + 1rem, 1.25rem);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-meta {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  color: rgba(255,255,255,.8);
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .25em; text-transform: uppercase;
}
.hero-meta .scroll-cue {
  display: inline-flex; align-items: center; gap: .65rem;
}
.hero-meta .scroll-cue .line {
  display: inline-block; width: 36px; height: 1px; background: rgba(255,255,255,.7);
  position: relative;
}
.hero-meta .scroll-cue .line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 14px; height: 1px;
  background: var(--gold-2);
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(22px); }
  100% { transform: translateX(0); }
}
@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* inner hero (smaller) */
.hero-sub {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding-top: 4rem;
}
.hero-sub .hero-bg-img {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
.hero-sub::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,15,10,.55) 0%, rgba(20,15,10,.35) 50%, rgba(20,15,10,.7) 100%);
}
.hero-sub .hero-inner {
  padding: 8rem clamp(1rem, 3vw, 2rem) 4rem;
}
.hero-sub h1 { font-size: clamp(2.2rem, 3.5vw + .5rem, 3.8rem); max-width: 20ch; }
.hero-sub .lead { font-size: 1.1rem; color: #ece1ca; max-width: 60ch; }
.crumbs {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
}
.crumbs a { color: var(--gold-2); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .5; margin: 0 .5rem; }

/* ---------- booking bar ---------- */
.booking-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-2);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  margin: -3.5rem clamp(1rem, 3vw, 2rem) 0;
  position: relative;
  z-index: 5;
}
.booking-bar > .max {
  max-width: 1280px; margin: 0 auto;
}
.booking-field {
  display: flex; flex-direction: column;
  padding: .5rem .85rem;
  border-right: 1px solid var(--line);
}
.booking-field:last-of-type { border-right: 0; }
.booking-field label {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .25rem;
}
.booking-field input, .booking-field select {
  border: 0; outline: 0;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  color: var(--ink); background: transparent;
  padding: 0; min-width: 0;
}
.booking-bar .btn { padding: 1.05rem 1.5rem; }
@media (max-width: 880px) {
  .booking-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: -2rem;
  }
  .booking-field { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: .65rem; }
  .booking-field:nth-last-child(-n+2) { border-bottom: 0; }
  .booking-bar .btn { grid-column: 1 / -1; }
}

/* ---------- accolades / marquee strip ---------- */
.strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex; gap: 4rem; align-items: center;
  font-family: var(--mono); font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.strip-inner span { display: inline-flex; align-items: center; gap: 4rem; }
.strip-inner span::after {
  content: "✦"; color: var(--gold); margin-left: 4rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- two-col split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.flip { grid-template-columns: 1fr 1.05fr; }
.split.flip > *:first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split.flip { grid-template-columns: 1fr; gap: 2rem; }
  .split.flip > *:first-child { order: unset; }
}
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-3);
  position: relative;
}
.split-media .frame img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 1.2s var(--ease-out);
}
.split-media .frame:hover img { transform: scale(1.05); }
.split-media .badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  display: flex; flex-direction: column;
  text-align: center; min-width: 130px;
}
.split-media .badge .num {
  font-family: var(--display); font-size: 2.4rem; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.split-media .badge .lbl {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
  margin-top: .35rem;
}
@media (max-width: 880px) {
  .split-media .badge { bottom: -1rem; right: 1rem; }
}

/* ---------- room cards ---------- */
.room-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.room-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--gold-soft); }
.room-card .media {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
}
.room-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.room-card:hover .media img { transform: scale(1.06); }
.room-card .price-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(58,36,21,.92); color: #fff;
  padding: .45rem .85rem; border-radius: var(--r-pill);
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .15em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.room-card .price-tag strong { font-family: var(--display); font-weight: 600; font-size: 1rem; letter-spacing: 0; }
.room-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.room-card .meta {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem;
}
.room-card h3 { margin-bottom: .5rem; }
.room-card .desc { color: var(--ink-2); font-size: .95rem; flex: 1; }
.room-card .features {
  display: flex; flex-wrap: wrap; gap: .35rem;
  margin: 1rem 0 1.25rem;
}
.tag {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--bg-alt); color: var(--ink-2);
  padding: .35rem .65rem; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.room-card .actions { display: flex; gap: .5rem; margin-top: auto; }
.room-card .actions .btn { flex: 1; }

/* ---------- amenity cards ---------- */
.amenity {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.amenity:hover { transform: translateY(-3px); border-color: var(--gold-soft); box-shadow: var(--sh-2); }
.amenity .ico {
  width: 60px; height: 60px;
  margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wood);
}
.amenity .ico svg { width: 26px; height: 26px; stroke: var(--wood); stroke-width: 1.6; fill: none; }
.amenity h4 { font-family: var(--sans); font-size: .95rem; font-weight: 600; margin-bottom: .35rem; color: var(--ink); }
.amenity p { font-size: .85rem; color: var(--ink-3); margin: 0; }

/* ---------- feature row (icon left, text right) ---------- */
.feature-row {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row .ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-row .ico svg { width: 22px; height: 22px; stroke: var(--wood); stroke-width: 1.6; fill: none; }
.feature-row h4 { margin-bottom: .25rem; font-family: var(--sans); font-size: 1rem; }
.feature-row p { font-size: .9rem; color: var(--ink-3); margin: 0; }

/* ---------- stats ---------- */
.stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.stat {
  padding: 2rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) { .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); } .stat:last-child { border-bottom: 0; } }
.stat .num {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.6rem, 4vw + 1rem, 4rem);
  line-height: 1;
  color: var(--gold-2); margin-bottom: .5rem;
  letter-spacing: -.02em;
}
.stat .lbl {
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ---------- testimonial ---------- */
.quote-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.quote::before {
  content: "“";
  position: absolute; top: -.5rem; left: 1.25rem;
  font-family: var(--display); font-size: 5rem; line-height: 1;
  color: var(--gold-soft);
}
.quote .stars {
  color: var(--gold); font-size: 1rem; margin-bottom: .5rem;
  letter-spacing: 2px;
}
.quote p {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1.1rem; color: var(--ink); line-height: 1.55;
  margin-bottom: 1.25rem;
}
.quote .author {
  display: flex; align-items: center; gap: .65rem;
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.quote .author .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wood-deep); color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600;
}
.quote .author strong {
  display: block; font-family: var(--sans); font-size: .92rem;
}
.quote .author span {
  display: block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}

/* ---------- mosaic gallery ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: .75rem;
}
.mosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
  background: var(--bg-alt);
}
.mosaic figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.mosaic figure:hover img { transform: scale(1.07); }
.mosaic figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,15,10,.4));
  opacity: 0; transition: opacity .3s var(--ease);
}
.mosaic figure:hover::after { opacity: 1; }
.mosaic figure figcaption {
  position: absolute; bottom: .75rem; left: 1rem; right: 1rem;
  color: #fff; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase;
  z-index: 1; opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mosaic figure:hover figcaption { opacity: 1; transform: translateY(0); }
.mosaic .span-2 { grid-column: span 2; }
.mosaic .row-2 { grid-row: span 2; }

@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .mosaic .span-2 { grid-column: span 2; }
  .mosaic .row-2 { grid-row: span 1; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,8,5,.95);
  display: none; align-items: center; justify-content: center;
  z-index: 200; padding: 2rem;
}
.lightbox.open { display: flex; animation: fadeIn .25s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--r-sm); box-shadow: var(--sh-3); }
.lightbox .close, .lightbox .prev, .lightbox .next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
  backdrop-filter: blur(8px);
}
.lightbox .close { top: 1.25rem; right: 1.25rem; transform: none; font-size: 1.6rem; }
.lightbox .prev { left: 1.25rem; }
.lightbox .next { right: 1.25rem; }
.lightbox .close:hover, .lightbox .prev:hover, .lightbox .next:hover { background: rgba(255,255,255,.25); }
.lightbox .counter {
  position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center;
  color: rgba(255,255,255,.7); font-family: var(--mono); font-size: .8rem;
  letter-spacing: .18em;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--display); font-size: 1.25rem; font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--gold); }
.faq-q .ic {
  width: 32px; height: 32px;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--ink); transition: background .25s var(--ease);
}
.faq-q .ic::before { width: 12px; height: 1.5px; }
.faq-q .ic::after { width: 1.5px; height: 12px; transition: transform .35s var(--ease), background .25s var(--ease); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q .ic { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-q .ic::before, .faq-item.open .faq-q .ic::after { background: #fff; }
.faq-item.open .faq-q .ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 0 1.5rem;
  color: var(--ink-2);
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- info / location box ---------- */
.info-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.info-box:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.info-box h4 {
  font-family: var(--mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5rem;
}
.info-box p { color: var(--ink); font-weight: 500; margin: 0; }
.info-box p.muted { color: var(--ink-2); font-weight: 400; font-size: .92rem; }

/* ---------- map ---------- */
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; height: 500px; border: 0; }

/* ---------- contact cards ---------- */
.contact-cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.5rem 1.75rem;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--gold-soft); }
.contact-card .ico {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), #fff);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 26px; height: 26px; stroke: var(--wood); stroke-width: 1.6; fill: none; }
.contact-card h4 { font-family: var(--display); font-size: 1.5rem; margin-bottom: .25rem; }
.contact-card p.big {
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem;
  color: var(--ink); margin: .5rem 0 1.25rem;
}
.contact-card p.muted { font-size: .92rem; color: var(--ink-2); margin-bottom: 1.25rem; }

/* ---------- form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--sh-1);
}
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: .35rem;
}
.field input, .field select, .field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
  font-size: .95rem;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* ---------- divider ---------- */
.divider {
  display: flex; align-items: center; gap: 1.25rem;
  margin: 2.5rem auto; max-width: 280px;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.divider .mark { color: var(--gold); font-size: 1.2rem; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--wood-deep);
  color: #d0c2a8;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 1.5rem;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .brand-mark {
  background: var(--gold); color: var(--wood-deep);
  width: 52px; height: 52px; font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-brand .brand-mark::after { border-color: rgba(58,36,21,.4); }
.site-footer h5 {
  color: #fff;
  font-family: var(--display); font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.site-footer a {
  color: #c5b59a;
  font-size: .92rem; display: block; padding: .3rem 0;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.site-footer a:hover { color: var(--gold-2); padding-left: 6px; }
.site-footer p { color: #b8a886; font-size: .9rem; }
.footer-contact a { display: inline-block; padding: .3rem 0; }
.footer-contact .row { display: flex; gap: .65rem; align-items: flex-start; padding: .3rem 0; }
.footer-contact .row svg { width: 16px; height: 16px; stroke: var(--gold-2); stroke-width: 1.6; fill: none; flex-shrink: 0; margin-top: 3px; }
.footer-contact .row a, .footer-contact .row span { padding: 0; color: #c5b59a; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: var(--mono); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: #8a7c62;
}
.footer-bottom a { color: #b8a886; padding: 0; display: inline; }

/* ---------- floating CTAs ---------- */
.float-btn {
  position: fixed; right: 1.25rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; z-index: 80;
  box-shadow: var(--sh-2);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.float-btn::before {
  content: ""; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid currentColor;
  opacity: .3;
  animation: pulse 2.4s var(--ease-out) infinite;
}
.float-btn:hover { transform: scale(1.08); box-shadow: var(--sh-3); }
.float-whatsapp { bottom: 1.25rem; background: var(--whatsapp); color: #fff; }
.float-whatsapp::before { color: var(--whatsapp); }
.float-call { bottom: 5.5rem; background: var(--wood-deep); color: #fff; }
.float-call::before { color: var(--wood-deep); }
.float-btn svg { width: 26px; height: 26px; fill: currentColor; position: relative; z-index: 1; }
@keyframes pulse {
  0%   { transform: scale(.95); opacity: .4; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.fade { transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- utilities ---------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.muted { color: var(--ink-3); }
.serif { font-family: var(--display); }
.mono { font-family: var(--mono); font-size: .85em; letter-spacing: .1em; }

/* hide scrollbar utility */
.hide-sb { scrollbar-width: none; }
.hide-sb::-webkit-scrollbar { display: none; }

/* ---------- responsive tweaks ---------- */
@media (max-width: 720px) {
  .hero-inner { padding-top: 8rem; padding-bottom: 5rem; }
  .hero-sub { min-height: 50vh; }
  .booking-bar { padding: .75rem; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 22px; height: 22px; }
  .float-call { bottom: 4.5rem; }
}
