/* ============================================================
   TINDASEL — Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Josefin+Sans:wght@300;400;600&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #1e1e22;
  color: #e0ddd8;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Josefin Sans', sans-serif; font-weight: 400; color: #C9A96E; }

p { margin-bottom: 1rem; color: #bfbbb4; font-size: 1.05rem; line-height: 1.78; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C9A96E;
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 0.75rem;
}

/* --- Layout --- */
.container {
  max-width: min(1700px, 92vw);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 40px;
  border-radius: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  border: none;
}

.btn-primary {
  background: #C9A96E;
  color: #fff;
}
.btn-primary:hover { background: #b8934f; color: #fff; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #C9A96E; color: #C9A96E; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #1B1B1B;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 70px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-logo img {
  height: 36px;
  width: auto;
}

.site-nav { display: flex; align-items: center; gap: 36px; }

.site-nav a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: #fff; }

.header-book { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #1B1B1B;
  padding: 24px 32px 32px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #C9A96E; }
.mobile-nav .btn { margin-top: 20px; width: 100%; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10,10,12,0.65) 0%, rgba(10,10,12,0.45) 50%, rgba(10,10,12,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content .hero-sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll-down arrow in hero */
.hero-scroll-arrow {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  text-decoration: none;
  animation: hero-bounce 2s ease-in-out infinite;
  transition: border-color 0.2s, background 0.2s;
  z-index: 2;
}
.hero-scroll-arrow:hover {
  border-color: #c9a96e;
  background: rgba(201,169,110,0.1);
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro { text-align: center; }
.intro .section-label { justify-content: center; display: block; text-align: center; }
.intro h2 { margin-bottom: 16px; }
.intro p { max-width: 620px; margin: 0 auto; color: #bfbbb4; }

/* ============================================================
   ROOMS GRID
   ============================================================ */
.rooms-section { background: #1e1e22; }
.rooms-section > .container > h3 { text-align: center; margin-bottom: 48px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.room-card {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #16161a;
  color: inherit;
  text-decoration: none;
}

/* Image section */
.room-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Price tag — white badge top-left */
.room-price-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  color: #C9A96E;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  z-index: 3;
}

/* Info section below image */
.room-card-info {
  padding: 24px 28px 28px;
}

.room-card-info h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.room-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  font-family: 'Josefin Sans', sans-serif;
}

.room-specs span { display: flex; align-items: center; gap: 5px; }

/* Hover overlay — covers entire card, shows description + link */
.room-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(8,8,10,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 10;
}

.room-card:hover .room-card-hover { opacity: 1; }

.room-card-hover p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

.room-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif;
  color: #C9A96E;
  transition: gap 0.2s ease;
}

.room-card-more:hover { gap: 12px; }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features { background: #19191d; }
.features h2 { text-align: center; margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}

.feature-block h4 { color: #C9A96E; margin-bottom: 12px; font-size: 0.7rem; }
.feature-block h3 { font-size: 1.25rem; margin-bottom: 12px; color: #fff; }
.feature-block p { color: #bfbbb4; }

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages { background: #1e1e22; }

.packages-header {
  text-align: center;
  margin-bottom: 56px;
}
.packages-header h2 { margin-top: 8px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.pkg-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.pkg-card-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }

/* Always-visible bottom label */
.pkg-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 90px 28px 28px;
  background: linear-gradient(to top, rgba(8,8,10,0.95) 0%, transparent 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.pkg-card:hover .pkg-card-label { opacity: 0; pointer-events: none; }

.pkg-card-label .pkg-dates {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'Josefin Sans', sans-serif;
  margin-bottom: 8px;
}

.pkg-card-label h4 {
  font-size: 1.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
}

/* Hover overlay */
.pkg-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,13,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.pkg-card:hover .pkg-card-overlay { opacity: 1; }

.pkg-card-overlay .pkg-price {
  font-size: 0.68rem;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 12px;
  display: block;
}

.pkg-card-overlay h4 {
  font-size: 1.7rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
}

.pkg-card-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 28px;
}

.packages-cta { text-align: center; }

/* ============================================================
   AVAILABILITY BAR
   ============================================================ */
.avail-bar {
  background: #1a1a1f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.avail-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
}
.avail-field {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.35rem 2rem;
  flex: 1;
}
.avail-field svg { flex-shrink: 0; opacity: 0.55; }
.avail-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a09890;
  margin-bottom: 0.18rem;
}
.avail-value {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}
.avail-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}
.avail-btn {
  display: flex;
  align-items: center;
  background: #c9a96e;
  color: #19191d;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 2.2rem;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.avail-btn:hover { background: #b8934a; color: #fff; }

/* Date field — custom calendar panel */
.avail-date-field { position: relative; cursor: pointer; }

.dp-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1rem 1rem 0.8rem;
  z-index: 300;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  width: 272px;
  user-select: none;
}
.dp-panel[hidden] { display: none; }

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}
.dp-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.dp-nav {
  background: transparent;
  border: none;
  color: #c9a96e;
  font-size: 1.5rem;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
}
.dp-nav:hover { background: rgba(201,169,110,0.12); }

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.25rem;
}
.dp-weekdays span {
  text-align: center;
  font-size: 0.67rem;
  color: #7a7570;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0;
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  text-align: center;
  padding: 0.38rem 0;
  font-size: 0.83rem;
  color: #d8d3cc;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.12s, color 0.12s;
}
.dp-day:hover:not(.dp-disabled):not(.dp-dim) {
  background: rgba(201,169,110,0.15);
  color: #c9a96e;
}
.dp-day.dp-today {
  border-color: rgba(201,169,110,0.45);
  color: #c9a96e;
}
.dp-day.dp-selected {
  background: #c9a96e !important;
  color: #19191d !important;
  font-weight: 700;
  border-color: transparent;
}
.dp-day.dp-disabled {
  color: rgba(255,255,255,0.2);
  cursor: default;
  pointer-events: none;
}
.dp-day.dp-dim {
  color: rgba(255,255,255,0.15);
  cursor: default;
  pointer-events: none;
}

/* Range date picker — in-range highlighting */
.dp-day.dp-in-range {
  background: rgba(201,169,110,0.18);
  border-radius: 0;
  color: #e8d9b8;
}
.dp-day.dp-range-start {
  background: #c9a96e !important;
  color: #19191d !important;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
}
.dp-day.dp-range-end {
  background: #c9a96e !important;
  color: #19191d !important;
  font-weight: 700;
  border-radius: 0 4px 4px 0;
}
.dp-day.dp-range-start.dp-range-end {
  border-radius: 4px;
}
.dp-day.dp-hover-end {
  background: rgba(201,169,110,0.55) !important;
  color: #fff !important;
  border-radius: 0 4px 4px 0;
}

/* Range picker panel (2-month Airbnb style) */
.bf-date-row { position: relative; }
.dp-range-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.2rem 1rem 0.8rem;
  z-index: 400;
  box-shadow: 0 16px 50px rgba(0,0,0,0.7);
  user-select: none;
  min-width: 580px;
}
.dp-range-panel[hidden] { display: none; }
.dp-rp-top {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.dp-rp-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  flex: 1;
}
.dp-rp-month .dp-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.dp-rp-month .dp-weekdays {
  margin-bottom: 0.25rem;
}
.dp-rp-prompt {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #c9a96e;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* On small screens: stack months vertically, full-width */
@media (max-width: 640px) {
  .dp-range-panel {
    min-width: 0;
    width: calc(100vw - 2rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 0.75rem 0.75rem;
  }
  .dp-rp-months {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  /* Hide right month on mobile — show one at a time */
  #dp-rp-m1 { display: none; }
}

/* Guests dropdown */
.avail-guests-field { position: relative; cursor: pointer; user-select: none; }
.avail-guests-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  min-width: 230px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}
.avail-guests-panel[hidden] { display: none; }
.avail-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  color: #e0dbd4;
  font-size: 0.9rem;
}
.avail-guest-row + .avail-guest-row { border-top: 1px solid rgba(255,255,255,0.07); }
.avail-counter { display: flex; align-items: center; gap: 0.7rem; }
.avail-cnt-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.avail-cnt-btn:hover { border-color: #c9a96e; background: rgba(201,169,110,0.12); }
.avail-cnt-val { min-width: 18px; text-align: center; color: #fff; font-weight: 600; font-size: 0.95rem; }
.avail-done-btn {
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.55rem;
  background: #c9a96e;
  color: #19191d;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s;
}
.avail-done-btn:hover { background: #b8934a; }

@media (max-width: 768px) {
  .avail-bar-inner { flex-direction: column; }
  .avail-field { padding: 0.85rem 1rem; }
  .avail-divider { width: auto; height: 1px; margin: 0; }
  .avail-btn { padding: 1rem; justify-content: center; }
  .avail-guests-panel { left: 0; right: 0; min-width: unset; }
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: #19191d;
  padding: 0;
  overflow: hidden;
}
.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.quote-split-img {
  overflow: hidden;
}
.quote-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-split-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  text-align: center;
}
.quote-section blockquote {
  max-width: 520px;
  margin: 0 auto 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-style: italic;
}
@media (max-width: 860px) {
  .quote-split { grid-template-columns: 1fr; }
  .quote-split-img { height: 320px; }
  .quote-split-text { padding: 60px 2rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #1e1e22; }
.testimonials h2 { text-align: center; margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #252529;
  border-radius: 4px;
  padding: 36px 28px;
  border-top: 2px solid #C9A96E;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #bfbbb4;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C9A96E;
  font-family: 'Josefin Sans', sans-serif;
}

/* ============================================================
   ADVENTURE BASE — ACTIVITY GRID
   ============================================================ */
.ab-section { padding-bottom: 80px; }

.ab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ab-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.ab-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.6);
}

.ab-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.ab-card:hover .ab-card-img {
  transform: scale(1.04);
}

.ab-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.6rem 1.6rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,13,0.95) 40%);
  z-index: 1;
}

.ab-card-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 0.6rem;
}

.ab-card-body h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  color: #c9a96e;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.ab-card-body p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* Adventure Base — Schedule Table */
.ab-schedule-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ab-schedule {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.ab-schedule thead th {
  background: rgba(201,169,110,0.12);
  color: #c9a96e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ab-schedule tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ab-schedule tbody tr:last-child { border-bottom: none; }
.ab-schedule tbody tr:hover { background: rgba(255,255,255,0.03); }

.ab-schedule tbody td {
  padding: 0.85rem 1.2rem;
  color: rgba(255,255,255,0.7);
  vertical-align: middle;
}

.ab-day {
  font-weight: 600;
  color: #fff !important;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ab-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-card { height: 400px; }
  .bf-extras-grid--featured .bf-extra-card--photo { height: 440px; }
  .bf-extra-card--photo { height: 380px; }
}
@media (max-width: 600px) {
  .ab-grid { grid-template-columns: 1fr; }
  .ab-card { height: 360px; }
  .bf-extras-grid--featured .bf-extra-card--photo { height: 360px; }
  .bf-extra-card--photo { height: 340px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: #C9A96E;
  text-align: center;
  padding: 72px 0;
}
.cta-banner h2 { color: #1e1e22; margin-bottom: 12px; }
.cta-banner p { color: rgba(30,30,34,0.75); margin-bottom: 32px; font-size: 0.95rem; }
.cta-banner .btn-primary {
  background: #1e1e22;
  color: #fff;
}
.cta-banner .btn-primary:hover { background: #0e0e11; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0e0e11;
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo img { height: 32px; width: auto; margin-bottom: 20px; }
.footer-tagline {
  font-size: 0.82rem;
  color: #6b6560;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 14px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: #C9A96E; color: #C9A96E; }

.footer-col h5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: #6b6560;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #C9A96E; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 0.83rem;
  color: #6b6560;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #C9A96E; }
.footer-book-now { margin-top: 20px; }
.footer-rate {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a4540;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: #4a4540;
  letter-spacing: 0.06em;
  margin: 0;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.72rem;
  color: #4a4540;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #C9A96E; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 70px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Support both hero-bg and page-hero-bg class names */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.15) 60%);
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.9) 0%, rgba(10,10,12,0.15) 60%);
}
.page-hero-content { position: relative; z-index: 2; }
/* Support hero-content inside page-hero */
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1200px;
  width: 100%;
  padding: 0 24px;
  margin: 0;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero .section-label { margin-bottom: 10px; }
.page-hero .hero-specs {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
}

/* Room specs list in hero */
.room-specs-hero {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
}
.room-specs-hero li {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-family: 'Josefin Sans', sans-serif;
  padding-right: 16px;
  margin-right: 12px;
  border-right: 1px solid rgba(255,255,255,0.2);
  line-height: 1;
  padding-top: 2px;
  padding-bottom: 2px;
}
.room-specs-hero li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

/* ============================================================
   ROOM DETAIL PAGE
   ============================================================ */
.room-body { padding: 72px 0; }

.room-body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.room-description h2 { margin-bottom: 20px; }
.room-description p { color: #bfbbb4; margin-bottom: 16px; }

.room-main h2 { margin-bottom: 16px; }
.room-main p { color: #bfbbb4; margin-bottom: 32px; }
.room-main h3 { font-size: 1.25rem; margin-top: 44px; margin-bottom: 20px; }
.room-main .amenities-list { margin-bottom: 0; }

.room-amenities h3 { font-size: 1.1rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 0;
}
.amenities-list li {
  color: #bfbbb4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.amenities-list li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C9A96E;
  flex-shrink: 0;
  margin-top: 6px;
}

.room-sidebar {
  background: #252529;
  border-radius: 4px;
  padding: 36px 28px;
  position: sticky;
  top: 90px;
  border: 1px solid rgba(255,255,255,0.06);
}
.room-sidebar h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.room-sidebar p { color: #c0bbb4; margin-bottom: 24px; }
.room-sidebar .btn { width: 100%; text-align: center; margin-bottom: 12px; }
.best-rate {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #857f78;
  text-align: center;
  display: block;
  margin-bottom: 24px;
}
.room-sidebar hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0; }
.room-sidebar .other-rooms-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C9A96E;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.room-sidebar ul { list-style: none; }
.room-sidebar ul li { margin-bottom: 10px; }
.room-sidebar ul li a {
  color: #c0bbb4;
  transition: color 0.2s;
}
.room-sidebar ul li a:hover { color: #C9A96E; }

/* ============================================================
   ROOM HERO SLIDER
   ============================================================ */
.room-slider {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 600px;
  margin-top: 70px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.72) 0%, rgba(10,10,12,0.15) 45%, rgba(10,10,12,0.0) 100%);
  z-index: 1;
}
.slider-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  width: 100%;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.slider-btn:hover {
  background: rgba(201,169,110,0.25);
  border-color: #C9A96E;
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
.slider-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active {
  background: #C9A96E;
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .room-slider { height: 70vh; }
  .slider-btn { width: 40px; height: 40px; font-size: 1.1rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}

@media (max-width: 480px) {
  /* placeholder for future slider mobile tweaks */
  .foo-unused { display: block; }
  .gallery-grid .gallery-item--wide { grid-column: span 1; }
}

/* ============================================================
   PACKAGES / ADVENTURE PAGES
   ============================================================ */
.pkg-detail { padding: 72px 0; }
.pkg-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
}
.pkg-includes h3, .pkg-itinerary h3 { font-size: 1.2rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 12px; }
.includes-list { list-style: none; margin-bottom: 40px; }
.includes-list li {
  font-size: 0.88rem;
  color: #bfbbb4;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 10px; align-items: flex-start;
}
.includes-list li::before { content: '✓'; color: #C9A96E; flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

.pkg-sidebar {
  background: #252529;
  border-radius: 4px;
  padding: 36px 28px;
  position: sticky;
  top: 90px;
}
.pkg-sidebar .pkg-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #C9A96E;
  margin-bottom: 4px;
}
.pkg-sidebar .pkg-dates-small {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6560;
  margin-bottom: 24px;
}
.pkg-sidebar .btn { width: 100%; text-align: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: #bfbbb4; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-details a {
  font-size: 0.9rem;
  color: #bfbbb4;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.contact-details a:hover { color: #C9A96E; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #6b6560; }
.form-group input,
.form-group textarea,
.form-group select {
  background: #252529;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  color: #e0ddd8;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #C9A96E; }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 80px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-img { border-radius: 4px; overflow: hidden; height: 480px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #19191d; padding: 80px 0; }
.faq h2 { margin-bottom: 48px; }
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  color: #e0ddd8;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  letter-spacing: 0.04em;
}
.faq-question::after { content: '+'; color: #C9A96E; font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 20px; font-size: 0.88rem; color: #bfbbb4; line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* Native <details>/<summary> FAQ variant (about.html) */
details.faq-item { list-style: none; }
details.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #e8e3db;
  letter-spacing: 0.02em;
  list-style: none;
  outline: none;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+';
  color: #c9a96e;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-left: 1rem;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
details.faq-item > p {
  padding: 0 0 20px;
  font-size: 0.88rem;
  color: #bfbbb4;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   STAY PAGE
   ============================================================ */
.stay-welcome { background: #19191d; padding: 72px 0; }
.stay-welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.stay-welcome h2 { margin-bottom: 16px; }
.stay-welcome p { color: #bfbbb4; }
.checkin-info { display: flex; gap: 32px; margin-top: 28px; }
.checkin-info div { display: flex; flex-direction: column; gap: 4px; }
.checkin-info .ci-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: #6b6560; }
.checkin-info .ci-time { font-size: 1.1rem; color: #C9A96E; font-family: 'Cormorant Garamond', serif; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .room-body-grid { grid-template-columns: 1fr; }
  .room-sidebar { position: static; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .pkg-sidebar { position: static; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .site-nav { display: none; }
  .header-book { display: none; }
  .hamburger { display: flex; }

  .rooms-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .stay-welcome-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .amenities-list { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section--lg { padding: 72px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; text-align: center; }

  /* Quote split section */
  .quote-split { grid-template-columns: 1fr; }
  .quote-split-img { height: 300px; }
  .quote-split-text { padding: 3rem 2rem; }

  .page-hero { min-height: 70vh; padding-top: 60px; }
  .room-specs-hero { flex-direction: column; gap: 6px; }
  .room-specs-hero li { border-right: none; padding-right: 0; margin-right: 0; }

  .room-body { padding: 48px 0; }
  .sidebar-book { padding: 28px 20px; }

  .pkg-hero { min-height: 60vh; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2.4rem; }
  .header-inner { padding: 0 16px; }
  .btn { padding: 14px 24px; font-size: 0.65rem; }
  .room-card-body { padding: 24px 20px; }
  .pkg-card-body { padding: 24px 20px; }
  .footer-col { padding: 0; }

  /* Availability bar — small phones */
  .avail-bar-inner { gap: 0; }
  .avail-field { padding: 0.75rem 1rem; }
  .avail-btn { font-size: 0.75rem; padding: 0.9rem 1rem; }

  /* Quote section — stack on mobile */
  .quote-split { grid-template-columns: 1fr; }
  .quote-split-img { height: 260px; }
  .quote-split-text { padding: 2.5rem 1.5rem; }

  /* Extras featured cards — taller on phones is fine, but cap it */
  .bf-extras-grid--featured .bf-extra-card--photo { height: 300px; }
  .bf-extra-card--photo { height: 280px; }

  /* Adventure base cards */
  .ab-card { height: 320px; }
}

/* ============================================================
   BOOKING FUNNEL
   ============================================================ */
.bf-page {
  background: #131317;
  min-height: 100vh;
  padding-top: 70px;
}

/* Progress bar */
.bf-progress-wrap {
  background: #19191d;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 2rem;
  position: sticky;
  top: 70px;
  z-index: 50;
}
.bf-progress {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.bf-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.bf-prog-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2a2a30;
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  transition: all 0.25s;
}
.bf-prog-step.active .bf-prog-dot {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #19191d;
}
.bf-prog-step.completed .bf-prog-dot {
  background: rgba(201,169,110,0.2);
  border-color: #c9a96e;
  color: #c9a96e;
}
.bf-prog-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #555;
  transition: color 0.25s;
}
.bf-prog-step.active .bf-prog-label,
.bf-prog-step.completed .bf-prog-label { color: #c9a96e; }
.bf-prog-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  margin-bottom: 20px;
  transition: background 0.25s;
}
.bf-prog-line.completed { background: #c9a96e; }

/* Body layout */
.bf-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

/* Steps */
.bf-step { display: block; }
.bf-step[hidden] { display: none; }
.bf-step-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.4rem;
}
.bf-step-sub {
  color: #a09890;
  margin-bottom: 2rem;
}

/* Date fields */
.bf-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.bf-date-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.bf-date-field:hover { border-color: rgba(201,169,110,0.4); }
.bf-date-field.bf-date-set { border-color: rgba(201,169,110,0.35); }
.bf-field-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a7570;
  margin-bottom: 0.18rem;
}
.bf-field-val {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 500;
}
@keyframes bf-shake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-6px); }
  40%,80%  { transform: translateX(6px); }
}
.bf-shake { animation: bf-shake 0.45s ease; }

/* Guests block */
.bf-guests-block {
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.bf-guests-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.bf-guest-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #d8d3cc;
  font-size: 0.9rem;
}
.bf-counter { display: flex; align-items: center; gap: 0.6rem; }
.bf-cnt-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.bf-cnt-btn:hover { border-color: #c9a96e; background: rgba(201,169,110,0.1); }
.bf-cnt-val { min-width: 20px; text-align: center; font-weight: 600; color: #fff; }

/* Actions row */
.bf-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-ghost {
  background: transparent;
  border: none;
  color: #a09890;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.15s;
}
.btn-ghost:hover { color: #fff; }

/* Selection cards (package + room) */
.bf-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.bf-select-card {
  display: flex;
  flex-direction: column;
  background: #1e1e24;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, transform 0.15s;
}
.bf-select-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-2px); }
.bf-select-card.selected { border-color: #c9a96e; }
.bf-select-card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.bf-select-card-body {
  padding: 1rem 1.1rem 1.1rem;
  flex: 1;
}
.bf-select-card-body--full { padding: 1.75rem 1.25rem; }
.bf-select-card-season {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9a96e;
  margin-bottom: 0.35rem;
}
.bf-select-card h4 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0.4rem;
}
.bf-select-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a96e;
  margin-bottom: 0.6rem;
}
.bf-select-card-price span { font-size: 0.78rem; color: #a09890; font-weight: 400; }
.bf-select-card-specs {
  font-size: 0.8rem;
  color: #a09890;
  margin-bottom: 0.4rem;
}
.bf-select-card-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bf-select-card-includes li {
  font-size: 0.8rem;
  color: #a09890;
  padding-left: 1rem;
  position: relative;
}
.bf-select-card-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-size: 0.7rem;
}
.bf-select-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c9a96e;
  color: #19191d;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.bf-select-card.selected .bf-select-check { opacity: 1; }

/* Extras */
.bf-extras-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a96e;
  margin-bottom: 0.75rem;
}
.bf-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.bf-extra-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #1e1e24;
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.bf-extra-card:hover { border-color: rgba(201,169,110,0.3); }
.bf-extra-card.selected { border-color: #c9a96e; }
.bf-extra-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.bf-extra-body h5 { font-size: 0.88rem; color: #fff; margin: 0 0 0.2rem; }
.bf-extra-body p  { font-size: 0.78rem; color: #7a7570; margin: 0; line-height: 1.4; }
.bf-extra-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #c9a96e;
  color: #19191d;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
}
.bf-extra-card.selected .bf-extra-check { opacity: 1; }

/* Photo card variant (extras step) */
.bf-extra-card--photo {
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 460px;
  align-items: stretch;
}
.bf-extra-card--photo .bf-extra-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.bf-extra-card--photo .bf-extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bf-extra-card--photo .bf-extra-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.4rem 1.4rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,13,0.95) 40%);
  z-index: 1;
}
.bf-extra-card--photo .bf-extra-body h5 {
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.bf-extra-card--photo .bf-extra-body p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}
.bf-extra-card--photo .bf-extra-check { top: 10px; right: 10px; z-index: 2; }

/* Featured activities grid (3 larger cards) */
.bf-extras-grid--featured .bf-extra-card--photo { height: 580px; }

/* Extras sub-label */
.bf-extras-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: -0.5rem 0 1.25rem;
}

/* Show more button */
.bf-show-more-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.25rem auto 0;
  background: none;
  border: 1px solid rgba(201,169,110,0.35);
  color: #c9a96e;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.bf-show-more-btn:hover {
  border-color: #c9a96e;
  background: rgba(201,169,110,0.08);
}

/* Extra activities revealed section */
.bf-extras-more { margin-top: 1.25rem; }

/* Summary sidebar */
.bf-summary-col { position: sticky; top: 145px; }
.bf-summary-box {
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 1.5rem;
}
.bf-summary-box h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a96e;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.bf-summary-empty { font-size: 0.85rem; color: #555; }
.bf-sum-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.bf-sum-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7570;
}
.bf-sum-val {
  font-size: 0.88rem;
  color: #d8d3cc;
}
.bf-sum-val em { font-style: normal; color: #7a7570; font-size: 0.82rem; }
.bf-sum-extras ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.bf-sum-extras li { font-size: 0.82rem; color: #d8d3cc; }
.bf-sum-extras li::before { content: '+ '; color: #c9a96e; }
.bf-summary-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: #555;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  line-height: 1.4;
}

/* Review inline summary */
.bf-review-summary {
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.bf-review-summary .bf-sum-row { margin-bottom: 0.6rem; }

/* Form */
.bf-form { display: flex; flex-direction: column; gap: 1rem; }
.bf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bf-form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.bf-form-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a09890;
}
.bf-form-field input,
.bf-form-field textarea {
  background: #1e1e24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.bf-form-field input:focus,
.bf-form-field textarea:focus { border-color: #c9a96e; }
.bf-form-field textarea { resize: vertical; min-height: 100px; }

/* Success */
.bf-success {
  text-align: center;
  padding: 4rem 2rem;
}
.bf-success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 2px solid #c9a96e;
  color: #c9a96e;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.bf-success h3 { color: #fff; margin-bottom: 0.5rem; }
.bf-success p  { color: #a09890; }

/* Responsive */
@media (max-width: 900px) {
  .bf-body { grid-template-columns: 1fr; }
  .bf-summary-col { position: static; }
}
@media (max-width: 600px) {
  .bf-date-row { grid-template-columns: 1fr; }
  .bf-form-row { grid-template-columns: 1fr; }
  .bf-select-grid { grid-template-columns: 1fr; }
  .bf-extras-grid { grid-template-columns: 1fr; }
  .bf-progress-wrap { padding: 1rem; }
  .bf-prog-label { display: none; }
  .bf-body { padding: 1.5rem 1rem; }
}
