/* ===================================================================
   HOTEL DOLLAR 98 — Modern Editorial Theme
   Palette: forest green + burnt terracotta + warm cream
   =================================================================== */

:root {
  --forest: #1e3d34;
  --forest-2: #2a5548;
  --forest-deep: #142822;
  --terra: #c85a3f;
  --terra-dark: #a4472e;
  --terra-soft: #e8b3a3;
  --cream: #f5efe6;
  --cream-2: #ebe3d5;
  --ink: #1a1a1a;
  --ink-2: #2f2f2f;
  --muted: #6b6b6b;
  --line: rgba(30, 61, 52, .12);
  --white: #ffffff;
  --shadow-sm: 0 4px 14px rgba(20, 40, 34, .06);
  --shadow-md: 0 16px 40px rgba(20, 40, 34, .1);
  --shadow-lg: 0 30px 70px rgba(20, 40, 34, .18);
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--terra); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.05;
  font-variation-settings: "SOFT" 30, "WONK" 0, "opsz" 144;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ---------- utility ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-tight { padding: clamp(50px, 7vw, 90px) 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  background: var(--cream-2);
  color: var(--forest);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-label-num {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
}
.section-title {
  font-size: clamp(2.15rem, 4.5vw, 3.75rem);
  margin-bottom: 20px;
  color: var(--forest);
}
.section-title i { color: var(--terra); font-style: italic; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: all .35s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--terra); color: var(--white); }
.btn-primary:hover { background: var(--terra-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(200, 90, 63, .3); }

.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-deep); color: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(30, 61, 52, .3); }

.btn-outline { background: transparent; color: var(--cream); border-color: rgba(245, 239, 230, .5); }
.btn-outline:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }

.btn-outline-dark { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-dark:hover { background: var(--forest); color: var(--cream); }

/* ===================================================================
   NAVBAR — dark forest, always visible, with pill CTA
   =================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--forest);
  transition: all .35s var(--ease);
  padding: 18px 0;
}
.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(20, 40, 34, .3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.brand-mark {
  width: 46px;
  height: 46px;
  background: var(--terra);
  color: var(--white);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.03em;
  transform: rotate(-6deg);
  transition: transform .35s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(0deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--cream);
}
.brand-sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 5px;
  color: var(--terra-soft);
  font-weight: 500;
}
.brand:hover { color: var(--cream); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  transition: all .3s var(--ease);
  opacity: .8;
}
.nav-menu a:hover { opacity: 1; background: rgba(245, 239, 230, .08); color: var(--cream); }
.nav-menu a.active { opacity: 1; background: rgba(200, 90, 63, .15); color: var(--terra-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--terra);
  color: var(--white) !important;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all .3s var(--ease);
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); color: var(--white) !important; }
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  color: var(--cream);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; transition: all .3s var(--ease); border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================================
   HERO — full-width slider with slide animation + booking bar
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 1.1s var(--ease-out);
  z-index: 1;
}
.hero-slide.active { transform: translateX(0); z-index: 2; }
.hero-slide.prev { transform: translateX(-100%); z-index: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 40, 34, .35) 0%, rgba(20, 40, 34, .75) 100%),
    linear-gradient(90deg, rgba(20, 40, 34, .5) 0%, transparent 60%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 140px;
  padding-bottom: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--cream);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  background: rgba(245, 239, 230, .12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 239, 230, .25);
  border-radius: var(--r-pill);
  color: var(--cream);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s .3s var(--ease-out) forwards;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--terra);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(200, 90, 63, .3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.3); } }

.hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 24px;
  max-width: 780px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s .5s var(--ease-out) forwards;
}
.hero-title i { color: var(--terra-soft); font-style: italic; font-weight: 300; }
.hero-title u {
  text-decoration: none;
  background-image: linear-gradient(120deg, var(--terra) 0%, var(--terra-dark) 100%);
  background-repeat: no-repeat;
  background-size: 100% 12px;
  background-position: 0 92%;
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .7s var(--ease-out) forwards;
  color: rgba(245, 239, 230, .85);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s .9s var(--ease-out) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Booking bar floating over hero bottom */
.hero-bar {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 12px 24px;
  background: var(--cream);
  border-radius: var(--r-pill);
  box-shadow: 0 20px 60px rgba(20, 40, 34, .4);
  max-width: calc(100vw - 40px);
  opacity: 0;
  transform: translate(-50%, 30px);
  animation: heroBarUp 1s 1.1s var(--ease-out) forwards;
}
@keyframes heroBarUp { to { opacity: 1; transform: translate(-50%, 0); } }
.hero-bar-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 20px;
  border-right: 1px solid var(--line);
  min-width: 130px;
}
.hero-bar-item:last-of-type { border-right: none; }
.hero-bar-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-bar-value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: 500;
}
.hero-bar .btn { padding: 14px 26px; }

/* Slider controls */
.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  display: flex;
  gap: 12px;
  right: 40px;
  flex-direction: column;
}
.hero-controls button {
  width: 52px; height: 52px;
  border: 1px solid rgba(245, 239, 230, .3);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(20, 40, 34, .3);
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.hero-controls button:hover { background: var(--terra); border-color: var(--terra); }
.hero-controls svg { width: 20px; height: 20px; }

.hero-dots {
  position: absolute;
  top:600px;
  left: 24px;
  bottom: 50px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--cream);
  font-family: var(--serif);
}
.hero-dots-num { font-size: 1.5rem; font-weight: 500; }
.hero-dots-num .cur { color: var(--terra-soft); }
.hero-dots-num .div { opacity: .4; margin: 0 6px; }
.hero-dots-bars { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.hero-dots-bars button {
  width: 3px; height: 18px;
  background: rgba(245, 239, 230, .3);
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.hero-dots-bars button.active { background: var(--terra); height: 36px; }

/* ===================================================================
   MARQUEE ticker
   =================================================================== */
.marquee {
  background: var(--forest);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245, 239, 230, .08);
  border-bottom: 1px solid rgba(245, 239, 230, .08);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.marquee-item i { color: var(--terra-soft); font-style: italic; }
.marquee-dot {
  width: 8px; height: 8px;
  background: var(--terra);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===================================================================
   PAGE HEADER (subpages) — dark forest with terracotta accent
   =================================================================== */
.page-header {
  position: relative;
  padding: 200px 0 100px;
  background: var(--forest-deep);
  color: var(--cream);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: .25;
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 34, .5), rgba(20, 40, 34, .95));
  z-index: 1;
}
.page-header-inner { position: relative; z-index: 2; }
.page-header .section-label {
  background: rgba(245, 239, 230, .1);
  color: var(--terra-soft);
  backdrop-filter: blur(10px);
}
.page-header .section-label-num { background: var(--terra); color: var(--white); }
.page-header h1 {
  color: var(--cream);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.page-header h1 i { color: var(--terra-soft); font-style: italic; font-weight: 300; }
.page-header-desc {
  color: rgba(245, 239, 230, .8);
  font-size: 1.1rem;
  max-width: 620px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(245, 239, 230, .7);
  align-items: center;
  font-weight: 500;
}
.breadcrumb a { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb a:hover { color: var(--terra-soft); }
.breadcrumb-sep { color: var(--terra); font-family: var(--serif); font-size: 16px; font-style: italic; }

/* ===================================================================
   INTRO / MAGAZINE BLOCK
   =================================================================== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media-main {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.intro-media-tag {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--cream);
  color: var(--forest);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}
.intro-media-tag::before { content: ''; width: 6px; height: 6px; background: var(--terra); border-radius: 50%; }
.intro-media-card {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--terra);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--r-md);
  max-width: 240px;
  box-shadow: var(--shadow-lg);
}
.intro-media-card .num {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.intro-media-card .label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .95;
}

.intro-body h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 24px; }
.intro-body h2 i { color: var(--terra); font-style: italic; }
.intro-body p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-stat .num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--forest);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.intro-stat .num i { color: var(--terra); font-style: italic; }
.intro-stat .label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================================================================
   ROOMS — big vertical cards with numbered tabs
   =================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.room-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .5s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.room-card:hover .room-card-media img { transform: scale(1.06); }
.room-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px; height: 48px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  z-index: 2;
}
.room-card-body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.room-card-body h3 { font-size: 1.75rem; color: var(--forest); margin-bottom: 14px; }
.room-card-body p { color: var(--muted); font-size: .95rem; margin-bottom: 22px; flex: 1; }
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.room-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--cream);
  color: var(--forest);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.room-tag svg { width: 12px; height: 12px; color: var(--terra); }
.room-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 600;
  font-size: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  transition: gap .3s var(--ease);
}
.room-card-link:hover { color: var(--terra); gap: 16px; }
.room-card-link svg { width: 16px; height: 16px; }

/* Room feature (rooms page) */
.room-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 110px;
}
.room-feature:last-child { margin-bottom: 0; }
.room-feature:nth-child(even) .room-feature-media { order: 2; }
.room-feature-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.room-feature-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.room-feature-num {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 18px;
  background: var(--cream);
  color: var(--forest);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.room-feature-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 20px;
}
.room-feature-body h2 i { color: var(--terra); font-style: italic; }
.room-feature-body > p { color: var(--muted); margin-bottom: 24px; font-size: 1.02rem; }
.room-feature-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin: 28px 0 34px;
  padding: 26px;
  background: var(--cream);
  border-radius: var(--r-md);
}
.room-feature-amenities span {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.room-feature-amenities svg { width: 18px; height: 18px; color: var(--terra); flex-shrink: 0; }

/* ===================================================================
   FACILITIES — pill grid
   =================================================================== */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.fac {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 30px;
  background: var(--white);
  border-radius: var(--r-md);
  transition: all .4s var(--ease);
}
.fac:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.fac:hover .fac-icon { background: var(--terra); color: var(--white); }
.fac-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--forest);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all .4s var(--ease);
}
.fac-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.fac-body h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.fac-body p { font-size: 13px; color: var(--muted); }

/* ===================================================================
   TESTIMONIALS / SOCIAL PROOF
   =================================================================== */
.reviews-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.reviews-header h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); color: var(--forest); margin-bottom: 16px; }
.reviews-header h2 i { color: var(--terra); font-style: italic; }
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: var(--r-pill);
}
.reviews-rating .stars {
  display: flex;
  gap: 2px;
  color: var(--terra);
}
.reviews-rating .stars svg { width: 16px; height: 16px; fill: currentColor; }
.reviews-rating .score {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 500;
}
.reviews-rating .count { color: var(--muted); font-size: 13px; }

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review {
  padding: 32px 30px;
  background: var(--white);
  border-radius: var(--r-md);
  position: relative;
}
.review-quote {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
}
.review p {
  font-family: var(--serif);
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
}
.review-name { font-weight: 600; color: var(--ink); font-size: 14px; }
.review-meta { font-size: 12px; color: var(--muted); }

/* ===================================================================
   GALLERY — asymmetric bento grid
   =================================================================== */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 40, 34, .55) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-item-plus {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
  z-index: 2;
}
.g-item:hover .g-item-plus { opacity: 1; transform: translateY(0); }
.g-item-plus svg { width: 18px; height: 18px; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item.big { grid-column: span 2; grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 40, 34, .96);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lightbox button {
  position: absolute;
  color: var(--cream);
  background: rgba(245, 239, 230, .1);
  border: 1px solid rgba(245, 239, 230, .3);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.lightbox button:hover { background: var(--terra); border-color: var(--terra); }
.lb-close { top: 30px; right: 30px; }
.lb-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 22px; height: 22px; }

/* ===================================================================
   SIGHTSEEING — big cards, editorial
   =================================================================== */
.sight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sight-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.sight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sight-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.sight-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.sight-card:hover .sight-media img { transform: scale(1.06); }
.sight-num {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 14px;
  background: var(--cream);
  color: var(--forest);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}
.sight-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.sight-body h3 { font-size: 1.4rem; color: var(--forest); margin-bottom: 12px; }
.sight-body p { color: var(--muted); font-size: .93rem; line-height: 1.65; flex: 1; }
.sight-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 12px; font-weight: 600;
  color: var(--terra); letter-spacing: .05em; text-transform: uppercase;
}
.sight-tag svg { width: 14px; height: 14px; }

/* ===================================================================
   ABOUT — values cards + story
   =================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.value-card {
  padding: 44px 40px;
  background: var(--white);
  border-radius: var(--r-lg);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px; right: 30px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--cream-2);
  line-height: 1;
  font-weight: 500;
  z-index: 0;
}
.value-card > * { position: relative; z-index: 1; }
.value-card h3 { font-size: 1.75rem; color: var(--forest); margin-bottom: 16px; }
.value-card h3 i { color: var(--terra); font-style: italic; }
.value-card p { color: var(--muted); }

/* ===================================================================
   VIDEO SECTION
   =================================================================== */
.video-wrap {
  position: relative;
  max-width: 1050px;
  margin: 60px auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-lg);
  cursor: pointer;
}
.video-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.video-wrap:hover img { transform: scale(1.03); }
.video-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20, 40, 34, .35);
}
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  transition: transform .3s var(--ease);
}
.video-play::before {
  content: '';
  position: absolute; inset: -14px;
  border: 2px solid rgba(200, 90, 63, .5);
  border-radius: 50%;
  animation: ring 2s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.video-play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-wrap:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }

.video-modal {
  position: fixed; inset: 0;
  background: rgba(20, 40, 34, .96);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.video-modal.open { display: flex; }
.video-modal-content { width: 100%; max-width: 1100px; aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; }
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: 30px; right: 30px;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(245, 239, 230, .1);
  border: 1px solid rgba(245, 239, 230, .3);
  color: var(--cream);
  display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.video-modal-close:hover { background: var(--terra); border-color: var(--terra); }
.video-modal-close svg { width: 22px; height: 22px; }

/* ===================================================================
   CONTACT PAGE
   =================================================================== */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-lead h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); color: var(--forest); margin-bottom: 20px; }
.contact-lead h2 i { color: var(--terra); font-style: italic; }
.contact-lead > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-item {
  display: flex;
  gap: 18px;
  padding: 24px 26px;
  background: var(--white);
  border-radius: var(--r-md);
  transition: all .35s var(--ease);
}
.contact-detail-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-detail-icon {
  width: 50px; height: 50px;
  background: var(--forest);
  color: var(--terra-soft);
  border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; }
.contact-detail-body h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 4px;
}
.contact-detail-body p, .contact-detail-body a {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--forest);
  line-height: 1.4;
  font-weight: 500;
  display: block;
}
.contact-detail-body a:hover { color: var(--terra); }

.contact-visual { position: relative; }
.contact-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.contact-visual-note {
  position: absolute;
  bottom: 30px; left: 30px;
  right: 30px;
  padding: 22px 26px;
  background: var(--cream);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-visual-note-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-visual-note-icon svg { width: 20px; height: 20px; }
.contact-visual-note h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--forest); margin-bottom: 2px; }
.contact-visual-note p { font-size: 13px; color: var(--muted); }

.hours-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 80px;
}
.hours-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(245, 239, 230, .1);
}
.hours-item:last-child { border-right: none; }
.hours-icon {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  color: var(--terra-soft);
}
.hours-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.hours-item h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hours-item p {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--terra-soft);
  font-weight: 500;
}

.map-wrap {
  margin-top: 80px;
  height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===================================================================
   CTA STRIP
   =================================================================== */
.cta-strip {
  padding: 90px 24px;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--forest);
  background-image: radial-gradient(circle at 20% 20%, rgba(200, 90, 63, .25) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(200, 90, 63, .15) 0%, transparent 50%);
}
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h2 {
  color: var(--cream);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  margin-bottom: 20px;
}
.cta-strip h2 i { color: var(--terra-soft); font-style: italic; }
.cta-strip p { max-width: 560px; margin: 0 auto 36px; color: rgba(245, 239, 230, .8); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--forest-deep);
  color: rgba(245, 239, 230, .7);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .brand { color: var(--cream); margin-bottom: 24px; }
.footer-brand p {
  color: rgba(245, 239, 230, .55);
  font-size: .95rem;
  margin-bottom: 26px;
  line-height: 1.7;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(245, 239, 230, .06);
  display: grid; place-items: center;
  color: rgba(245, 239, 230, .7);
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--terra); color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

.footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 14px; }
.footer ul a { color: rgba(245, 239, 230, .6); font-size: .93rem; transition: all .3s var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.footer ul a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--terra);
  transition: width .3s var(--ease);
}
.footer ul a:hover { color: var(--cream); }
.footer ul a:hover::before { width: 14px; }
.footer-contact li { display: flex; gap: 12px; font-size: .93rem; color: rgba(245, 239, 230, .65); margin-bottom: 18px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--terra); flex-shrink: 0; margin-top: 4px; }
.footer-contact a { color: rgba(245, 239, 230, .65); }
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 30px;
  padding-right: 75px;
  border-top: 1px solid rgba(245, 239, 230, .08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(245, 239, 230, .5);
}
.footer-bottom a { color: var(--terra-soft); }
.footer-bottom a:hover { color: var(--cream); }

/* ===================================================================
   FLOATING BUTTONS
   =================================================================== */
.fab-group {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(20, 40, 34, .25);
  transition: all .35s var(--ease);
  position: relative;
}
.fab:hover { transform: translateY(-3px) scale(1.05); color: var(--white); }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { background: #1ebb5b; }
.fab-call { background: var(--terra); }
.fab-call:hover { background: var(--terra-dark); }
.fab svg { width: 26px; height: 26px; }
.fab::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: fab-pulse 2.2s ease-out infinite;
  opacity: 0;
}
@keyframes fab-pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.6); opacity: 0; } }

.back-to-top {
  position: fixed;
  left: 22px; bottom: 22px;
  width: 46px; height: 46px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--terra); }
.back-to-top svg { width: 18px; height: 18px; }

/* ===================================================================
   REVEAL
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .intro { grid-template-columns: 1fr; gap: 70px; }
  .intro-media-main { height: 480px; }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .sight-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .room-feature { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .room-feature:nth-child(even) .room-feature-media { order: 0; }
  .room-feature-media img { height: 420px; }
  .values-grid { grid-template-columns: 1fr; }
  .reviews-strip { grid-template-columns: 1fr; gap: 40px; }
  .gallery-bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .hero-controls { display: none; }
  .hero-content { padding-bottom: 220px; }
  .hero-bar-item { min-width: 110px; padding: 4px 14px; }
}

/* Hero-bar stacks vertically before it gets squished */
@media (max-width: 960px) {
  .hero-content { padding-bottom: 320px; padding-top: 130px; }
  .hero-bar {
    flex-direction: column;
    padding: 18px;
    border-radius: var(--r-lg);
    width: calc(100vw - 32px);
    max-width: 420px;
    align-items: stretch;
    bottom: 22px;
    gap: 4px;
  }
  .hero-bar-item {
    border-right: none;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    text-align: center;
    align-items: center;
    min-width: 0;
  }
  .hero-bar-item:last-of-type { border-bottom: none; }
  .hero-bar .btn { justify-content: center; margin-top: 6px; }
}

@media (max-width: 768px) {
  .navbar { padding: 14px 0; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    height: 100dvh;
    width: 85%;
    max-width: 340px;
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 40px;
    transition: right .4s var(--ease);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 20px; padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .brand-sub { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: 18px; }

  .hero-content { padding-top: 115px; padding-bottom: 310px; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 14px; }
  .hero-dots { display: none; }
  .marquee-item { font-size: 1.3rem; }

  .fac-grid, .rooms-grid, .sight-grid { grid-template-columns: 1fr; }
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-item.big { grid-column: span 2; grid-row: span 2; }
  .g-item.wide { grid-column: span 2; }
  .reviews-list { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
  .intro-media-card { right: 20px; padding: 20px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hours-strip { grid-template-columns: 1fr; }
  .hours-item { border-right: none; border-bottom: 1px solid rgba(245, 239, 230, .08); }
  .hours-item:last-child { border-bottom: none; }
  .contact-visual img { height: 440px; }
  .contact-visual-note { flex-direction: column; align-items: flex-start; text-align: left; padding: 20px; }
  .page-header { padding: 150px 0 70px; }
}

@media (max-width: 480px) {
  .container, .container-wide, .container-narrow { padding: 0 18px; }
  .hero-content { padding-top: 105px; padding-bottom: 300px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 22px; height: 22px; }
}