/* ==============================================================
   Aranya Jungle Stay — Main Stylesheet
   Design tokens · Reset · Typography · Components · Sections
   ============================================================== */

:root {
  /* Brand */
  --c-dark:        #0f0f0f;
  --c-dark-2:      #1a1a1a;
  --c-dark-3:      #232323;
  --c-cream:       #f5f1ec;
  --c-cream-2:     #ede7df;
  --c-white:       #ffffff;
  --c-gold:        #c5a572;
  --c-gold-2:      #b8945f;
  --c-gold-3:      #d8bf8c;
  --c-text:        #2a2a2a;
  --c-muted:       #7a7a7a;
  --c-border:      #e8e2d8;
  --c-border-dk:   rgba(255,255,255,0.12);

  /* Type */
  --ff-serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-sans:       'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container:     1240px;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow-sm:     0 4px 14px rgba(0,0,0,0.06);
  --shadow:        0 18px 40px -12px rgba(0,0,0,0.18);
  --shadow-lg:     0 30px 60px -20px rgba(0,0,0,0.35);

  /* Motion */
  --ease:          cubic-bezier(.2,.7,.2,1);
  --t-fast:        .25s var(--ease);
  --t:             .4s var(--ease);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 4px; }
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--c-muted); }
em { font-style: italic; color: var(--c-gold); }

/* -------------------- Utilities -------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--c-gold-3); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  margin-bottom: 14px;
}
.section-title-light { color: var(--c-white); }
.section-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head .section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--c-gold);
  margin: 18px auto 0;
}
.section-head-light .section-title::after { background: var(--c-gold-3); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn-gold:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-outline-gold:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

/* -------------------- Reveal animation -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==============================================================
   HEADER
   ============================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background var(--t), padding var(--t), box-shadow var(--t);
}
.site-header.is-scrolled {
  background: rgba(15,15,15,0.92);
  padding: 14px 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
  font-family: var(--ff-serif);
  letter-spacing: 0.18em;
}
.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-style: italic;
  border-radius: 50%;
  font-size: 0.95rem;
}
.logo-text { font-size: 1.15rem; font-weight: 600; }
.logo-light { color: var(--c-cream); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-list {
  display: flex;
  gap: 36px;
}
.nav-link {
  color: var(--c-cream);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t-fast);
}
.nav-link:hover, .nav-link.active { color: var(--c-gold-3); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { padding: 12px 22px; font-size: 0.78rem; }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-close {
  display: none;
  position: absolute;
  top: 18px; right: 18px;
  color: var(--c-white);
  width: 38px; height: 38px;
  border-radius: 50%;
}

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  color: var(--c-white);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/hero.jpg') center center / cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.stars {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
}
.stars span {
  width: 14px; height: 14px;
  background: var(--c-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
}
.hero-title {
  color: var(--c-white);
  margin-bottom: 18px;
  font-weight: 400;
}
.hero-title em { color: var(--c-gold-3); font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Booking widget */
.booking-widget {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  background: var(--c-white);
  border-radius: 4px;
  padding: 10px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  text-align: left;
}
.bw-field {
  padding: 12px 18px;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bw-field:nth-last-child(2) { border-right: 0; }
.bw-field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.bw-field input,
.bw-field select {
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-dark);
  padding: 4px 0;
  width: 100%;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.bw-submit { margin: 4px; padding: 0 30px; }

/* ==============================================================
   ABOUT
   ============================================================== */
.about {
  padding: 120px 0;
  background: var(--c-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text { max-width: 520px; }
.about-text p { margin-bottom: 16px; }
.about-text .section-title { text-align: left; }
.about-text .section-title::after { display: none; }

.rating-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 30px;
  padding: 18px 28px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--c-gold);
}
.rating-badge strong {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--c-dark);
  line-height: 1;
}
.rating-stars {
  display: flex;
  gap: 4px;
}
.rating-stars span {
  width: 14px; height: 14px;
  background: var(--c-gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.9 6.9L22 10l-5.5 4.8L18.2 22 12 18.3 5.8 22l1.7-7.2L2 10l7.1-1.1z'/></svg>") center/contain no-repeat;
}
.rating-badge small {
  color: var(--c-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.ag-item {
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
}
.ag-item:hover { transform: translateY(-4px); }
.ag-1 { background-image: url('../assets/gallery-1.jpg'); }
.ag-2 { background-image: url('../assets/gallery-2.jpg'); transform: translateY(28px); }
.ag-3 { background-image: url('../assets/gallery-3.jpg'); }
.ag-4 { background-image: url('../assets/gallery-4.jpg'); transform: translateY(28px); }
.ag-2:hover, .ag-4:hover { transform: translateY(24px); }

/* ==============================================================
   ROOMS
   ============================================================== */
.rooms {
  padding: 120px 0;
  background: var(--c-white);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  background: var(--c-cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.room-card:hover .room-img { transform: scale(1.05); }
.room-img-1 { background-image: url('../Images/WhatsApp%20Image%202026-04-26%20at%2012.21.10.jpeg'); }
.room-img-2 { background-image: url('image_d1.jpeg'); }
.room-img-3 { background-image: url('../Images/IMG_0035.PNG'); }

.room-body {
  padding: 26px 28px 30px;
  text-align: center;
}
.room-body h3 {
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.room-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--c-muted);
  font-size: 0.92rem;
}
.room-stars { color: var(--c-gold); letter-spacing: 0.1em; }
.room-price { color: var(--c-dark); font-weight: 600; }
.room-price small { color: var(--c-muted); font-weight: 400; font-size: 0.78rem; }
.room-price-dual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--c-dark);
  font-weight: 600;
  line-height: 1.25;
}
.room-price-dual .price-line { white-space: nowrap; }
.room-price-dual small { color: var(--c-muted); font-weight: 400; font-size: 0.78rem; }
.room-link { padding: 10px 22px; font-size: 0.74rem; }

/* ==============================================================
   PROMO VIDEO
   ============================================================== */
.promo-video {
  position: relative;
  padding: 140px 0;
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}
.pv-bg {
  position: absolute; inset: 0;
  background: url('../assets/video-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.pv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.75));
  z-index: 1;
}
.pv-content { position: relative; z-index: 2; }
.play-btn {
  position: relative;
  margin-top: 36px;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-white);
  display: inline-grid;
  place-items: center;
  transition: transform var(--t-fast), background var(--t-fast);
}
.play-btn svg { margin-left: 4px; }
.play-btn:hover { transform: scale(1.06); background: var(--c-gold-2); }
.play-btn .pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--c-gold);
  animation: pulse 2s infinite var(--ease);
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==============================================================
   AMENITIES
   ============================================================== */
.amenities {
  padding: 120px 0;
  background: var(--c-cream);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.amenity-card {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--c-border);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.amenity-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-gold);
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px dashed var(--c-gold);
  transition: background var(--t-fast), color var(--t-fast);
}
.amenity-card:hover .amenity-icon {
  background: var(--c-gold);
  color: var(--c-white);
  border-style: solid;
}
.amenity-card h3 { margin-bottom: 10px; }

/* ==============================================================
   TESTIMONIALS
   ============================================================== */
.testimonials {
  position: relative;
  padding: 120px 0;
  color: var(--c-white);
  overflow: hidden;
}
.ts-bg {
  position: absolute; inset: 0;
  background: url('../assets/testimonial-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.ts-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.78), rgba(15,15,15,0.92));
  z-index: 1;
}
.ts-content { position: relative; z-index: 2; text-align: center; }

.ts-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 240px;
}
.ts-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.ts-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.ts-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  border: 2px solid var(--c-gold);
}
.ts-avatar-1 { background-image: url('../assets/avatar-1.svg'); }
.ts-avatar-2 { background-image: url('../assets/avatar-2.svg'); }
.ts-avatar-3 { background-image: url('../assets/avatar-3.svg'); }

.ts-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
  max-width: 680px;
}
.ts-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--c-gold-3);
  margin-bottom: 4px;
}
.ts-role {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.ts-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}
.ts-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background var(--t-fast), transform var(--t-fast);
}
.ts-dots button.is-active {
  background: var(--c-gold);
  transform: scale(1.3);
}

/* ==============================================================
   SERVICES
   ============================================================== */
.services {
  padding: 120px 0;
  background: var(--c-white);
}
.river-activities-note {
  margin: 0 auto 28px;
  max-width: 980px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #f8f9fb;
}
.river-activities-note p {
  margin: 0;
  color: var(--c-text);
}
.river-activities-note p + p {
  margin-top: 10px;
}

.info-note {
  margin: 26px auto 0;
  max-width: 980px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #f8f9fb;
}
.info-note p {
  margin: 0;
  color: var(--c-text);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 360px;
  isolation: isolate;
}
.service-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-img-1 { background-image: url('../Images/IMG_0034.PNG'); }
.service-img-2 { background-image: url('../Images/IMG_0038.PNG'); }
.service-img-3 { background-image: url('../Images/IMG_2283.JPG.jpeg'); }
.service-img-4 { background-image: url('../Images/IMG_0035.PNG'); }

.rafting-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1400;
}
.rafting-modal.is-open { display: flex; }
.rafting-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(4px);
}
.rafting-modal-dialog {
  position: relative;
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #101318;
  color: #f2f4f8;
  border: 1px solid rgba(209, 167, 111, 0.35);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  padding: 28px;
  z-index: 1;
}
.rafting-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}
.rafting-modal-head h3 {
  margin: 8px 0 8px;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}
.rafting-modal-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.rafting-modal-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.rafting-modal-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.rafting-modal-notes {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.rafting-modal-notes li + li {
  margin-top: 8px;
}
body.rafting-open {
  overflow: hidden;
}

.service-label {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(15,15,15,0.7);
  backdrop-filter: blur(6px);
  color: var(--c-white);
  border-radius: 4px;
  transition: background var(--t-fast);
}
.service-card:hover .service-label {
  background: var(--c-gold);
}
.service-label h3 { color: var(--c-white); font-size: 1.1rem; }
.service-label .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-gold);
  display: grid;
  place-items: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.service-card:hover .service-label .arrow {
  background: var(--c-white);
  color: var(--c-gold);
}

/* ==============================================================
   QUICK BOOKING STRIP
   ============================================================== */
.quick-booking {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.qb-bg {
  position: absolute; inset: 0;
  background: url('../assets/booking-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.qb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.7), rgba(15,15,15,0.8));
  z-index: 1;
}
.qb-content { position: relative; z-index: 2; }
.qb-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  background: var(--c-white);
  border-radius: 4px;
  padding: 10px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.qb-form .btn { margin: 4px; padding: 0 36px; }

/* ==============================================================
   NEWS
   ============================================================== */
.news {
  padding: 120px 0;
  background: var(--c-cream);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.news-img-1 { background-image: url('../Images/IMG_0038.PNG'); }
.news-img-2 { background-image: url('../Images/WhatsApp Image 2026-04-26 at 12.21.14 (1).jpeg'); }
.news-img-3 { background-image: url('../assets/testimonial-bg.jpg'); }

.news-body { padding: 26px 28px 30px; }
.news-meta {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.news-body h3 {
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-body p { margin-bottom: 18px; font-size: 0.94rem; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-dark);
  font-weight: 600;
}
.news-link span { color: var(--c-gold); transition: transform var(--t-fast); }
.news-link:hover { color: var(--c-gold); }
.news-link:hover span { transform: translateX(4px); }

/* ==============================================================
   FOOTER
   ============================================================== */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer-col h4 {
  color: var(--c-white);
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 1px;
  background: var(--c-gold);
}
.footer-about { margin: 16px 0 22px; font-size: 0.95rem; }
.footer-contact li,
.footer-links li {
  padding: 6px 0;
  font-size: 0.94rem;
}
.footer-links a:hover { color: var(--c-gold); }

.newsletter {
  display: flex;
  margin: 16px 0 18px;
  border: 1px solid var(--c-border-dk);
  border-radius: 2px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 14px;
  color: var(--c-white);
  font-size: 0.92rem;
  outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button {
  background: var(--c-gold);
  color: var(--c-white);
  width: 46px;
  font-size: 1.1rem;
  transition: background var(--t-fast);
}
.newsletter button:hover { background: var(--c-gold-2); }

.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.socials a:hover {
  background: var(--c-gold);
  color: var(--c-white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--c-border-dk);
  padding: 22px 0;
  font-size: 0.88rem;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--c-gold); }

/* ==============================================================
   BACK TO TOP
   ============================================================== */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-white);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), background var(--t-fast);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.back-to-top:hover { background: var(--c-dark); }

/* Mobile floating contact (shown via responsive.css ≤767px) */
.mobile-contact-fab {
  display: none;
}

/* ==============================================================
   PAGE BANNER (inner pages)
   ============================================================== */
.page-banner {
  position: relative;
  padding: 200px 0 110px;
  color: var(--c-white);
  text-align: center;
  overflow: hidden;
}
.pb-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.pb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.78) 0%, rgba(15,15,15,0.6) 50%, rgba(15,15,15,0.85) 100%);
  z-index: 1;
}
.pb-content {
  position: relative;
  z-index: 2;
}
.pb-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-3);
  margin-bottom: 14px;
}
.pb-title {
  color: var(--c-white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}
.pb-title em { color: var(--c-gold-3); }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
}
.breadcrumb a { color: var(--c-gold-3); }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb .sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-gold);
  display: inline-block;
}

/* Banner backgrounds per page */
.pb-bg-rooms    { background-image: url('../assets/booking-bg.jpg'); }
.pb-bg-about    { background-image: url('../assets/video-bg.jpg'); }
.pb-bg-services { background-image: url('../assets/testimonial-bg.jpg'); }
.pb-bg-contact  { background-image: url('../assets/hero.jpg'); }

/* ==============================================================
   ROOMS PAGE — additional rooms
   ============================================================== */
.room-img-4 { background-image: url('../assets/room-4.jpg'); }
.room-img-5 { background-image: url('../assets/room-5.jpg'); }
.room-img-6 { background-image: url('../assets/room-6.jpg'); }

/* ==============================================================
   ABOUT PAGE — extra story block
   ============================================================== */
.story {
  padding: 120px 0;
  background: var(--c-white);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  height: 480px;
  border-radius: var(--radius-sm);
  background: url('../assets/room-3.jpg') center/cover no-repeat;
  box-shadow: var(--shadow);
  position: relative;
}
.story-img::after {
  content: "Est. 2018";
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--c-gold);
  color: var(--c-white);
  padding: 14px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--ff-sans);
}
.story-text .section-title { text-align: left; }
.story-text .section-title::after { display: none; }
.story-text p { margin-bottom: 18px; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}
.story-stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 6px;
}
.story-stat strong em { color: var(--c-gold); font-style: normal; }
.story-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ==============================================================
   SERVICES PAGE — feature blocks (image + text alternating)
   ============================================================== */
.service-feature {
  padding: 100px 0;
}
.service-feature:nth-child(odd)  { background: var(--c-white); }
.service-feature:nth-child(even) { background: var(--c-cream); }
.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.service-feature.reverse .sf-grid { direction: rtl; }
.service-feature.reverse .sf-grid > * { direction: ltr; }
.sf-img {
  height: 420px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.sf-text .section-title { text-align: left; }
.sf-text .section-title::after { display: none; }
.sf-text p { margin-bottom: 16px; }
.sf-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.sf-list li {
  position: relative;
  padding-left: 28px;
  color: var(--c-text);
  font-size: 0.95rem;
}
.sf-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 1px;
  background: var(--c-gold);
}
.sf-list li::after {
  content: "";
  position: absolute;
  left: 14px; top: 5px;
  width: 8px; height: 8px;
  border-right: 1px solid var(--c-gold);
  border-top: 1px solid var(--c-gold);
  transform: rotate(45deg);
}

/* ==============================================================
   WHY CHOOSE US (Services)
   ============================================================== */
.why-choose {
  padding: 120px 0;
  background: var(--c-dark);
  color: var(--c-cream);
}
.why-choose .section-head .section-title { color: var(--c-white); }
.why-choose .section-head .section-title::after { background: var(--c-gold); }
.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.wc-card {
  padding: 32px 26px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  text-align: center;
  background: rgba(255,255,255,0.02);
  transition: transform var(--t), border-color var(--t-fast), background var(--t-fast);
}
.wc-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold);
  background: rgba(197,165,114,0.06);
}
.wc-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(197,165,114,0.12);
  color: var(--c-gold);
}
.wc-card h3 {
  color: var(--c-white);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.wc-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-info {
  padding: 120px 0 60px;
  background: var(--c-cream);
}
.ci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ci-card {
  padding: 40px 32px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.ci-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ci-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-gold);
  display: inline-grid;
  place-items: center;
  border: 1px dashed var(--c-gold);
  margin-bottom: 18px;
}
.ci-card h3 { margin-bottom: 10px; }
.ci-card p { font-size: 0.95rem; line-height: 1.7; }
.ci-card a { color: var(--c-text); }
.ci-card a:hover { color: var(--c-gold); }

.contact-form-section {
  padding: 60px 0 120px;
  background: var(--c-cream);
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.cf-form {
  background: var(--c-white);
  padding: 48px 44px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 18px;
}
.cf-form h2 { margin-bottom: 6px; }
.cf-form .eyebrow { margin-bottom: 0; }
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cf-field label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.cf-field input,
.cf-field textarea,
.cf-field select {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  background: var(--c-cream);
  font-size: 0.95rem;
  color: var(--c-dark);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
}
.cf-field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: inherit;
}
.cf-form .btn { justify-self: start; margin-top: 6px; }

.map-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--c-white);
  display: flex;
  flex-direction: column;
}
.map-area {
  flex: 1;
  min-height: 320px;
  background: url('../assets/testimonial-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.map-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.35), rgba(15,15,15,0.6));
  pointer-events: none;
}
.map-area:has(iframe) { background: var(--c-cream); }
.map-area:has(iframe)::after { display: none; }
.map-area iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}
.map-pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(197,165,114,0.5);
}
.map-pin::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--c-gold);
}
.map-meta {
  padding: 28px 32px;
  border-top: 1px solid var(--c-border);
}
.map-meta h3 { margin-bottom: 6px; }
.map-meta p { font-size: 0.92rem; }

/* ==============================================================
   PAGE INTRO (small intro blocks above grids on inner pages)
   ============================================================== */
.page-intro {
  padding: 110px 0 0;
  text-align: center;
}
.page-intro + .rooms,
.page-intro + .services,
.page-intro + .news,
.page-intro + .gallery-section { padding-top: 60px; }
.page-intro .section-head { margin-bottom: 0; }

/* ==============================================================
   GALLERY (rooms.html — photo mosaic + lightbox)
   ============================================================== */
.gallery-section {
  padding: 70px 0 100px;
  background: var(--c-cream);
}

/* Filter chips */
.g-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.g-filter {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  color: var(--c-charcoal);
  font: 500 12px/1 var(--f-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.g-filter:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.g-filter.is-active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-black);
}

/* Mosaic grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  background: #d8d4cc;
  isolation: isolate;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--t-med);
}
.gallery-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 2; }
.gallery-item.gi-big  { grid-row: span 2; grid-column: span 2; }

/* Hover overlay */
.gi-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.4s var(--ease);
}
.gallery-item:hover .gi-overlay,
.gallery-item:focus-within .gi-overlay {
  opacity: 1;
  transform: none;
}
.gi-cat {
  display: block;
  font: 600 10px/1 var(--f-sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.gi-title {
  display: block;
  font: 500 1.15rem/1.3 var(--f-serif);
  color: #fff;
}
.gi-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  backdrop-filter: blur(2px);
}

.gallery-item.gi-hide { display: none; }

/* ----- Lightbox ----- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lb-frame {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-frame img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-caption {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  font: 400 0.9rem/1.5 var(--f-sans);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 700px;
}
.lb-close,
.lb-nav {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover,
.lb-nav:hover {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
}
body.lb-open { overflow: hidden; }

/* ============================================================
   PACKAGE / ACCOMMODATION / MEALS / ACTIVITIES / NOTES
   ============================================================ */

/* ----- Package overview card ----- */
.package-overview {
  padding: 110px 0 60px;
  background: var(--c-bg);
}
.po-card {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
  border: 1px solid rgba(197, 165, 114, 0.35);
  border-radius: 12px;
  padding: 44px 48px;
  box-shadow: 0 24px 60px rgba(15, 15, 15, 0.08);
  text-align: center;
}
.po-times {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 14px;
}
.po-time { display: flex; flex-direction: column; gap: 4px; }
.po-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold-2);
  font-weight: 600;
}
.po-time strong {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--c-dark);
  font-weight: 600;
}
.po-divider {
  width: 1px;
  height: 40px;
  background: rgba(15, 15, 15, 0.18);
}
.po-note {
  font-size: 0.92rem;
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: 28px;
}
.po-includes {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  text-align: left;
  border-top: 1px solid rgba(197, 165, 114, 0.3);
}
.po-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--c-text);
  line-height: 1.5;
}
.po-tick {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  background: var(--c-gold);
  color: var(--c-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ----- Accommodation ----- */
.accommodation { padding: 80px 0; background: var(--c-bg); }
.room-desc {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin: 8px 0 16px;
  line-height: 1.55;
}

/* ----- Meals ----- */
.meals { padding: 80px 0; background: var(--c-cream); }
.meals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.meal-card {
  background: var(--c-white);
  border: 1px solid rgba(15, 15, 15, 0.06);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.meal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.08);
  border-color: rgba(197, 165, 114, 0.4);
}
.meal-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: saturate(1.05);
}
.meal-card h3 {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  color: var(--c-dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.meal-card p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ----- Activities (included) ----- */
.activities { padding: 80px 0; background: var(--c-bg); }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.activity-card {
  background: var(--c-white);
  border: 1px solid rgba(15, 15, 15, 0.07);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.activity-card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--c-gold);
  transition: width var(--t);
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(15, 15, 15, 0.1);
  border-color: rgba(197, 165, 114, 0.4);
}
.activity-card:hover::before { width: 60%; }
.activity-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.activity-card h3 {
  font-family: var(--ff-head);
  font-size: 1.32rem;
  color: var(--c-dark);
  margin-bottom: 10px;
  font-weight: 600;
}
.activity-card p {
  font-size: 0.94rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ----- Add-on activities (dark section) ----- */
.addons {
  padding: 80px 0;
  background: linear-gradient(180deg, #1c1c1c 0%, #0f0f0f 100%);
  color: var(--c-white);
}
.addons .section-head { color: var(--c-white); }
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.addon-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 165, 114, 0.28);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.addon-card:hover {
  transform: translateY(-4px);
  background: rgba(197, 165, 114, 0.08);
  border-color: var(--c-gold);
}
.addon-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--c-gold-3);
  background: rgba(197, 165, 114, 0.12);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.addon-card h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  color: var(--c-white);
  margin-bottom: 6px;
  font-weight: 600;
}
.addon-distance {
  font-size: 0.9rem;
  color: var(--c-gold-3);
  font-weight: 500;
  margin-bottom: 12px;
}
.addon-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

/* ----- Important notes ----- */
.notes { padding: 80px 0; background: var(--c-cream); }
.notes-list {
  list-style: none;
  margin: 50px auto 0;
  padding: 0;
  max-width: 820px;
  display: grid;
  gap: 16px;
}
.notes-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-white);
  padding: 22px 26px;
  border-left: 3px solid var(--c-gold);
  border-radius: 6px;
  box-shadow: 0 6px 22px rgba(15, 15, 15, 0.04);
  font-size: 0.98rem;
  color: var(--c-text);
  line-height: 1.6;
}
.note-icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  background: rgba(197, 165, 114, 0.14);
  color: var(--c-gold-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* ----- Home: Package highlight strip ----- */
.package-strip {
  padding: 90px 0;
  background: linear-gradient(180deg, #fbf8f2 0%, #f5efe3 100%);
}
.ps-card {
  background: var(--c-white);
  border-radius: 14px;
  border: 1px solid rgba(197, 165, 114, 0.25);
  padding: 50px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(15, 15, 15, 0.06);
}
.ps-text .eyebrow { margin-bottom: 14px; }
.ps-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--c-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}
.ps-text h2 em { color: var(--c-gold-2); font-style: italic; font-weight: 500; }
.ps-text p {
  color: var(--c-muted);
  margin-bottom: 26px;
  line-height: 1.65;
}
.ps-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.ps-tag {
  font-size: 0.82rem;
  background: rgba(197, 165, 114, 0.12);
  color: var(--c-gold-2);
  padding: 7px 14px;
  border-radius: 100px;
  font-weight: 500;
}
.ps-pricing {
  display: grid;
  gap: 18px;
}
.ps-price {
  background: linear-gradient(135deg, #1c1c1c 0%, #0f0f0f 100%);
  color: var(--c-white);
  border-radius: 10px;
  padding: 26px 28px;
  border: 1px solid rgba(197, 165, 114, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.ps-price-label {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
}
.ps-price-label small {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.ps-price-amount {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  color: var(--c-gold-3);
  font-weight: 700;
  white-space: nowrap;
}
.ps-price-amounts{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}
.ps-price-amount small {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-left: 4px;
}

/* ----- Gallery page: room/price pills strip ----- */
.rg-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--c-cream);
  border: 1px solid rgba(197, 165, 114, 0.22);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 30px auto 0;
  max-width: 920px;
}
.rg-pill {
  flex: 1 1 220px;
  display: grid;
  gap: 4px;
  padding: 10px 16px;
  border-right: 1px solid rgba(15, 15, 15, 0.08);
}
.rg-pill:last-of-type { border-right: 0; }
.rg-pill-label {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--c-dark);
  font-weight: 600;
}
.rg-pill-meta {
  font-size: 0.82rem;
  color: var(--c-muted);
}
.rg-pill-price {
  font-family: var(--ff-head);
  font-size: 1.18rem;
  color: var(--c-gold-2);
  font-weight: 600;
  margin-top: 4px;
}
.rg-pill-price small {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  color: var(--c-muted);
  font-weight: 400;
  margin-left: 2px;
}
.rg-pill-price-dual {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
}
.rg-pill-price-dual .price-line { white-space: nowrap; }
.rg-pill-cta { white-space: nowrap; }


