/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg: #f5f0e8;
  --paper: #fbf7f0;
  --ink: #2a2520;
  --ink-soft: #5a4f45;
  --line: #e4dccb;
  --accent: #b8532d;
  --accent-dark: #9a4323;
  --gold: #c9a96e;
  --dark: #1a1410;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; }
h1, h2, h3 { font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif; font-weight: 400; letter-spacing: -0.015em; line-height: 1.1; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ===== SECTION BACKGROUNDS ===== */
.section-dark { background: var(--dark); color: #f2ece2; }
.section-light { background: var(--bg); color: var(--ink); }
.section-dark .overline { color: var(--gold); }
.section-dark h2 { color: #faf5ec; }
.section-dark p { color: rgba(255,255,255,0.75); }

/* ===== TYPOGRAPHY ===== */
.overline {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
  font-family: 'Inter', sans-serif;
}
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 400; margin-bottom: 20px; }
.body-large { font-size: 1.05rem; max-width: 680px; margin: 0 auto 40px; line-height: 1.8; color: var(--ink-soft); }
.section-dark .body-large { color: rgba(255,255,255,0.75); }
.section-light .body-large { color: var(--ink-soft); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: none;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.section-light .btn-primary, .exclusive-section .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.section-light .btn-primary:hover { background: var(--accent-dark); }
.btn-nav {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav:hover { background: #fff; color: var(--dark); border-color: #fff; }

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 20, 16, 0.6);
  backdrop-filter: blur(6px);
  padding: 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
}
.nav-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
#navbar.scrolled .nav-logo { filter: none; }
#navbar.scrolled .btn-nav {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
#navbar.scrolled .btn-nav:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* Nav trust element */
.nav-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 18px;
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.35s ease;
  text-decoration: none;
}
#navbar.scrolled .nav-trust { color: var(--ink); }
.nav-trust-stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
.nav-trust-rating { font-variant-numeric: tabular-nums; font-weight: 600; }
.nav-trust-src { opacity: 0.7; font-size: 12px; }
.nav-groups-link {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-groups-link:hover { color: #fff; }
#navbar.scrolled .nav-groups-link { color: var(--ink); }
#navbar.scrolled .nav-groups-link:hover { color: var(--accent); }

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,.25) 0%, rgba(26,20,16,.15) 35%, rgba(26,20,16,.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 72px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fc28d;
  box-shadow: 0 0 0 4px rgba(127,194,141,0.25);
}
.hero-location {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aaa;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.hero h1 {
  font-size: clamp(54px, 9vw, 128px);
  color: #fff;
  margin: 0;
  font-weight: 400;
  line-height: 0.92;
  max-width: 14ch;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

/* Hero trust strip */
.hero-trust-row {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(26,20,16,0.45);
  backdrop-filter: blur(6px);
  z-index: 2;
}
.hero-trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  justify-content: center;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hero-trust-item { display: inline-flex; align-items: center; gap: 10px; }
.hero-trust-item strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.hero-trust-item .stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
.hero-trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.18); }

/* Hero button overrides */
.hero .btn-primary::after { content: '\2192'; transition: transform 0.2s ease; }
.hero .btn-primary:hover::after { transform: translateX(4px); }
.hero .btn-secondary {
  background: transparent;
  color: #fff;
  border: none;
  padding: 16px 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.hero .btn-secondary:hover {
  background: transparent;
  color: #fff;
  border-bottom-color: var(--gold);
}

/* ===== EXCLUSIVE SECTION ===== */
.exclusive-section { padding: 100px 24px; }
.exclusive-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.exclusive-text { flex: 1; }
.exclusive-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.exclusive-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; font-size: 1rem; }
.exclusive-text .btn-primary { margin-top: 12px; }
.exclusive-image { flex: 1; }
.exclusive-image img { border-radius: 4px; width: 100%; }

/* ===== WHO SECTION ===== */
.who-section { padding: 120px 0; }
.who-section h2 { margin-bottom: 16px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  text-align: left;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.who-card {
  padding: 44px 36px 40px;
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 0.25s ease;
  position: relative;
}
.who-card:hover { background: var(--paper); }
.who-icon { font-size: 1.6rem; margin-bottom: 16px; }
.who-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 400;
  color: var(--ink);
}
.who-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ===== COMPOUND SECTION ===== */
.compound-section { padding: 120px 0; }
.compound-section .text-center { margin-bottom: 56px; }
.compound-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
  margin-top: 72px;
}
.compound-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #2a221c;
  margin: 0;
}
.compound-item--tall { grid-row: span 2; aspect-ratio: auto; }
.compound-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1), filter 0.5s ease;
  filter: brightness(0.88);
}
.compound-item:hover img { transform: scale(1.04); filter: brightness(1); }
.compound-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,8,6,0.85) 100%);
  padding: 24px 24px 20px;
  color: #fff;
}
.compound-caption h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 4px;
}
.compound-caption p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.compound-item:hover .compound-caption p { max-height: 80px; margin-top: 2px; }

/* Asymmetric compound spans — 7 items */
.compound-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.compound-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.compound-item:nth-child(3) { grid-column: span 4; grid-row: span 2; }
.compound-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.compound-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.compound-item:nth-child(6) { grid-column: span 5; grid-row: span 2; }
.compound-item:nth-child(7) { grid-column: span 7; grid-row: span 2; }

/* ===== LIFE SECTION ===== */
.life-section { padding: 100px 24px; }
.life-section .text-center { margin-bottom: 56px; }
.life-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.life-image {
  margin-bottom: 28px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.life-image img { width: 100%; height: 100%; object-fit: cover; }
.life-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  color: var(--ink);
}
.life-col > p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; }
.life-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.life-list li {
  font-size: 0.92rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}
.life-list li::before { content: '—'; color: #999; flex-shrink: 0; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 120px 0; }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about-image {
  position: sticky;
  top: 100px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text { flex: 1; }
.about-text h2 { margin-bottom: 40px; }
.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px;
  max-width: 62ch;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 68px;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--accent);
  font-style: italic;
}
.about-pullquote {
  margin: 48px 0;
  padding: 28px 0 28px 32px;
  border-left: 2px solid var(--accent);
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
  color: var(--ink);
  font-style: italic;
  max-width: 24ch;
}
.about-closer {
  margin-top: 32px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  border-left: none;
  padding-left: 0;
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: 22px !important;
  line-height: 1.4 !important;
  font-style: italic;
  color: var(--ink) !important;
}

/* ===== AVAILABILITY SECTION ===== */
.availability-section { padding: 100px 24px; }
.avail-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.avail-left { flex: 0 0 280px; }
.avail-left h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 16px; }
.avail-left > p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 28px; }
.avail-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot--booked { background: #4285f4; }
.legend-dot--open { background: #ddd; border: 1px solid #ccc; }
.avail-cal {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 28px;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-title {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
.cal-nav {
  background: none;
  border: 1px solid #ddd;
  color: #555;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover { background: #111; color: #fff; border-color: #111; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  text-align: center;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  color: #444;
  border-radius: 3px;
  font-weight: 400;
}
.cal-empty { background: transparent; }
.cal-booked {
  background: #4285f4;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
}
.cal-today {
  border: 2px solid var(--ink);
  font-weight: 700;
  color: var(--ink);
}

/* ===== EXPERIENCES SECTION ===== */
.experiences-section { padding: 100px 24px; }
.experiences-section .text-center { margin-bottom: 48px; }

.exp-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.exp-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #333;
  background: transparent;
  color: #777;
  cursor: pointer;
  transition: all 0.2s;
}
.exp-btn.active, .exp-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.exp-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.exp-card:hover { border-color: #444; }
.exp-card.hidden { display: none; }

.exp-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.exp-img--cave { background: url('public/images/blue-creek-cave.jpg') center/cover no-repeat; }
.exp-img--nimli { background: url('public/images/nim-li-punit.jpg') center/cover no-repeat; }
.exp-img--lubaantun { background: url('public/images/lubaantun.jpg') center/cover no-repeat; }
.exp-img--waterfalls { background: url('public/images/rio-blanco-waterfalls.jpg') center/cover no-repeat; }
.exp-img--market { background: url('public/images/pg-market.jpg') center/cover no-repeat; }

.exp-body { padding: 24px; }
.exp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.exp-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.exp-tag--nature { background: rgba(29, 158, 117, 0.2); color: #4ecfa0; }
.exp-tag--ancient { background: rgba(127, 119, 221, 0.2); color: #a49ff0; }
.exp-tag--culture { background: rgba(216, 90, 48, 0.2); color: #f0845a; }
.exp-duration {
  font-size: 0.72rem;
  color: #555;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}
.exp-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}
.exp-subtitle {
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
  margin-bottom: 14px;
}
.exp-desc {
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.75;
  margin-bottom: 16px;
}
.exp-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.exp-highlights li {
  font-size: 0.8rem;
  color: #666;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.exp-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #444;
}

/* ===== PUNTA GORDA SECTION ===== */
.pg-section {
  padding: 120px 48px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}
.pg-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.pg-inner .overline { color: #888; }
.pg-inner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 28px;
}
.pg-inner p {
  font-size: 1.05rem;
  color: #bbb;
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 640px;
}
.pg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.pg-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  border: 1px solid #333;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

/* ===== SPECS BAR ===== */
.specs-bar {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spec-item {
  flex: 1;
  min-width: 120px;
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #2a2a2a;
}
.spec-item:last-child { border-right: none; }
.spec-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  font-family: 'Inter', sans-serif;
}

/* ===== INQUIRE SECTION ===== */
.inquire-section { padding: 100px 24px; }
.inquire-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.inquire-left { flex: 0 0 300px; }
.inquire-left h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 20px; }
.inquire-left > p { color: #bbb; line-height: 1.8; margin-bottom: 28px; font-size: 0.98rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 2px;
  transition: background 0.2s;
  margin-bottom: 36px;
}
.btn-whatsapp:hover { background: #1ebe5d; }
.wa-icon { font-size: 1.1rem; }
.inquire-contact p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}
.inquire-form-wrap { flex: 1; }
.inquire-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-family: 'Inter', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #555; }
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group select option { background: #1a1a1a; color: #fff; }
.btn-submit {
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.btn-submit:hover { background: #e0dbd4; }
.form-note { font-size: 0.8rem; color: #555; }
.form-success { text-align: center; padding: 60px 0; }
.form-success h3 { font-size: 1.8rem; color: #fff; margin-bottom: 16px; }
.form-success p { color: #bbb; line-height: 1.75; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer .footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
  width: 100%;
}
.footer-brand {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}
.footer-brand-tag {
  margin-top: 20px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  color: #faf5ec;
  font-style: italic;
  max-width: 22ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  width: 100%;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 12px; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { min-height: 90vh; }
  .hero-trust-row { position: relative; padding: 18px 20px; }
  .hero-trust-divider { display: none; }
  .hero-trust-inner { gap: 20px; }
  .hero-inner { padding-bottom: 40px; }

  .exclusive-inner { flex-direction: column; gap: 40px; }

  .who-grid { grid-template-columns: repeat(2, 1fr); }

  .compound-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .compound-item:nth-child(n) { grid-column: span 2; grid-row: span 2; }
  .compound-item:nth-child(1) { grid-column: span 4; }
  .compound-caption p { max-height: 60px; margin-top: 2px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .avail-inner { flex-direction: column; gap: 40px; }
  .avail-left { flex: none; width: 100%; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { position: relative; top: 0; aspect-ratio: 16/10; }

  .life-split { grid-template-columns: 1fr; gap: 48px; }

  .specs-bar { gap: 0; }
  .spec-item { min-width: 33%; border-bottom: 1px solid #2a2a2a; }

  .inquire-inner { flex-direction: column; gap: 48px; }
  .inquire-left { flex: none; width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-trust-src { display: none; }
  #navbar .nav-inner { padding: 14px 18px; gap: 12px; }
  .nav-trust { margin-right: 10px; font-size: 12px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 3rem; }

  nav { padding: 0 16px; }
  .nav-logo { height: 40px; }
  .btn-nav { font-size: 0.72rem; padding: 8px 14px; }

  .who-grid { grid-template-columns: 1fr; }

  .compound-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .spec-item { min-width: 50%; }

  .pg-section { padding: 80px 24px; }

  .reviews-section { padding: 60px 20px; }

  .cal-grid { gap: 4px; }
  .cal-cell { font-size: 0.75rem; padding: 6px 2px; }
  .cal-day-label { font-size: 0.65rem; }

  .exclusive-section,
  .who-section,
  .compound-section,
  .life-section,
  .availability-section,
  .inquire-section { padding: 60px 20px; }
}

/* ===== REVIEWS ===== */
.reviews-section { padding: 120px 0; }
.reviews-section h2 { margin-bottom: 60px; }

/* Reviews hero block */
.reviews-hero {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}
.reviews-rating { text-align: left; }
.reviews-rating-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(120px, 16vw, 220px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: block;
}
.reviews-rating-num em { font-style: italic; color: var(--accent); font-size: 0.6em; }
.reviews-rating-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 22px;
  margin-top: 16px;
}
.reviews-rating-src {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.reviews-rating-src a { color: var(--accent); text-decoration: none; border-bottom: 1px solid currentColor; }
.reviews-hero-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.reviews-hero-copy p {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  max-width: 48ch;
}

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

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  box-shadow: none;
}

.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  flex: 1;
  margin: 18px 0 auto;
  quotes: none;
}

.review-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.review-source {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .reviews-hero { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; padding-bottom: 48px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--dark);
}
.gallery-section .text-center h2 { color: #fff; }
.gallery-section .body-large { color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.gallery-grid {
  columns: 3;
  column-gap: 10px;
}
.gallery-item {
  display: block;
  margin-bottom: 10px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s;
  border-radius: 4px;
}
.gallery-item:hover img { transform: scale(1.03); opacity: 0.82; }
/* Lightbox */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-overlay img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  transition: opacity 0.2s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  padding: 20px;
  user-select: none;
  transition: opacity 0.2s;
}
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-section h2 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.pricing-intro { color: #666; max-width: 560px; margin: 0 auto 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: none;
}
.pricing-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9a96e;
  margin-bottom: 10px;
}
.pricing-card h3 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.pricing-rate {
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
}
.pricing-per { font-size: 13px; color: #999; margin: 4px 0 16px; }
.pricing-card p { font-size: 13px; color: #666; line-height: 1.65; }
.pricing-meals-heading {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  margin-bottom: 28px;
}
.pricing-meals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: center;
}
.pricing-meal-item .pricing-rate { font-size: 28px; }
.pricing-meal-item .pricing-per { margin-bottom: 0; }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.pricing-note strong { color: var(--ink); }

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 100px 0;
  background: var(--paper);
}
.faq-section h2 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 48px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: #666; line-height: 1.7; }

/* ============================================
   GETTING THERE
   ============================================ */
.getting-there-section {
  padding: 80px 0;
  background: var(--dark);
}
.getting-there-section h2 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 40px;
}
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.transport-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 24px;
}
.transport-icon { font-size: 28px; margin-bottom: 12px; }
.transport-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.transport-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-meals { grid-template-columns: 1fr; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(26,20,16,0.25);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.mobile-cta.visible { transform: translateY(0); }
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ===== BOOKING ENGINE ===== */
.book-section { padding: 100px 0; }
.book-header { margin-bottom: 56px; }
.book-header h2 { color: #fff; }
.book-header .body-large { color: #bbb; }

/* Step nav */
.book-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.book-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bstep-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #333;
  color: #444;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.bstep-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444;
  transition: color 0.25s;
  white-space: nowrap;
}
.bstep-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  min-width: 32px;
  max-width: 100px;
  margin: 0 10px 22px;
}
.book-step.active .bstep-num { border-color: #fff; background: #fff; color: #111; }
.book-step.active .bstep-lbl { color: #fff; }
.book-step.done .bstep-num { border-color: #555; color: #666; }
.book-step.done .bstep-lbl { color: #555; }

/* Panels */
.book-panel { max-width: 960px; margin: 0 auto; }
.book-panel.hidden { display: none; }

/* ---- Step 1: Date picker ---- */
.book-step1-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.book-cal-hint {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c9a96e;
  margin-bottom: 14px;
}
#book-calendar .cal-cell.cal-selectable { cursor: pointer; color: #f0ece6; font-weight: 500; }
#book-calendar .cal-cell.cal-selectable:hover { background: #2a2a2a; color: #fff; }
#book-calendar .cal-cell.cal-past { opacity: 0.25; cursor: default; }
#book-calendar .cal-cell.cal-checkin,
#book-calendar .cal-cell.cal-checkout { background: #fff; color: #111; font-weight: 700; border-radius: 2px; }
#book-calendar .cal-cell.cal-range { background: #222; color: #ccc; }
#book-calendar .cal-cell.cal-booked { background: #4285f4; color: #fff; font-weight: 600; border-radius: 3px; cursor: default; }

.date-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.date-badge {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 14px;
  min-width: 90px;
}
.date-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  margin-bottom: 5px;
}
.date-badge-val {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: #fff;
}
.date-badge-arrow { color: #444; font-size: 1.1rem; flex-shrink: 0; }

.book-legend { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.book-legend-sel,
.book-legend-range {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.book-legend-sel { background: #fff; }
.book-legend-range { background: #222; border: 1px solid #444; }
.book-dates-note { font-size: 0.83rem; color: #555; line-height: 1.65; margin-bottom: 28px; }

/* Buttons */
.btn-book-next {
  display: block;
  width: 100%;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 24px;
  border: 2px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.btn-book-next:hover:not(:disabled) { background: #e8e5e0; }
.btn-book-next:disabled { opacity: 0.28; cursor: default; }
.btn-book-back {
  background: transparent;
  color: #666;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 12px 20px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.btn-book-back:hover { color: #ccc; border-color: #555; }
.book-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  gap: 16px;
}
.book-nav-row .btn-book-next { width: auto; flex: 1; }

/* ---- Step 2: Group info ---- */
.book-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.book-field { display: flex; flex-direction: column; gap: 8px; }
.book-field--full { grid-column: 1 / -1; }
.book-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
}
.label-opt { color: #444; text-transform: none; letter-spacing: 0; font-size: 0.72rem; }
.book-field input,
.book-field select,
.book-field textarea {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  color: #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  padding: 12px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus { border-color: #666; }
.book-field select option { background: #1a1a1a; }
.book-field textarea { resize: vertical; }

/* ---- Step 3: Rooms & Meals ---- */
.book-rm-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.book-rm-col h3,
.book-meal-col h3,
.book-price-col h3 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.book-rm-note { font-size: 0.77rem; color: #444; margin-bottom: 18px; }
.room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 3px;
  padding: 14px 16px;
  margin-bottom: 10px;
  gap: 12px;
}
.room-name { font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif; font-weight: 400; color: #ddd; font-size: 0.95rem; margin-bottom: 2px; }
.room-rate { font-size: 0.77rem; color: #c9a96e; margin-bottom: 3px; }
.room-desc { font-size: 0.74rem; color: #555; }
.room-counter { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.counter-btn {
  width: 30px;
  height: 30px;
  background: #252525;
  border: 1px solid #383838;
  border-radius: 2px;
  color: #ccc;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
}
.counter-btn:hover { background: #383838; }
.counter-val {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: #fff;
  min-width: 22px;
  text-align: center;
}

.book-meal-col .book-field { margin-bottom: 14px; }
.meal-options { display: flex; flex-direction: column; gap: 8px; }
.meal-opt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 3px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.meal-opt-row:hover { border-color: #3a3a3a; }
.meal-opt-row input[type="checkbox"] { width: 15px; height: 15px; accent-color: #fff; flex-shrink: 0; }
.meal-opt-name { flex: 1; font-family: 'Inter', sans-serif; font-size: 0.88rem; color: #ccc; }
.meal-opt-rate { font-size: 0.77rem; color: #c9a96e; }

.price-lines {
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  color: #888;
  border-bottom: 1px solid #1f1f1f;
}
.price-line:last-child { border-bottom: none; }
.price-line--tax { color: #555; font-size: 0.78rem; }
.price-line--total { color: #eee; font-weight: 600; font-size: 0.92rem; border-top: 1px solid #2a2a2a; padding: 13px 14px; }
.price-line--deposit { color: #c9a96e; font-weight: 600; padding: 11px 14px; }
.price-est-note { font-size: 0.73rem; color: #444; line-height: 1.5; }

/* ---- Step 4: Review ---- */
.book-review-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.book-review-left h3,
.book-review-right h3 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.review-table { width: 100%; border-collapse: collapse; }
.review-table td {
  padding: 9px 0;
  border-bottom: 1px solid #1e1e1e;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  vertical-align: top;
}
.review-table td:first-child { color: #555; width: 38%; padding-right: 14px; }
.review-table td:last-child { color: #ddd; }
.review-table tr.review-total td { color: #fff; font-weight: 700; border-top: 2px solid #333; padding-top: 13px; font-size: 0.88rem; }
.review-table tr.review-deposit td { color: #c9a96e; font-weight: 600; }

.next-steps-list {
  list-style: none;
  counter-reset: nsc;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.next-steps-list li {
  counter-increment: nsc;
  display: flex;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: #999;
  line-height: 1.5;
}
.next-steps-list li::before {
  content: counter(nsc);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #777;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.review-contact { margin-bottom: 28px; }
.review-contact p { font-size: 0.82rem; color: #555; margin-bottom: 10px; }
.btn-submit-booking {
  display: block;
  width: 100%;
  background: #fff;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px;
  border: 2px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0;
}
.btn-submit-booking:hover:not(:disabled) { background: #e8e5e0; }
.btn-submit-booking:disabled { opacity: 0.4; cursor: default; }

/* Success */
.book-success-wrap { padding: 60px 0; }
.success-check { font-size: 3rem; margin-bottom: 20px; display: block; }
.book-success-wrap h2 { color: #fff; margin-bottom: 16px; }
.book-success-wrap p { color: #bbb; margin-bottom: 8px; }
.book-success-wrap .btn-whatsapp { display: inline-block; margin-top: 20px; }

/* Responsive */
@media (max-width: 860px) {
  .book-step1-wrap { grid-template-columns: 1fr; gap: 32px; }
  .book-form-grid { grid-template-columns: 1fr; }
  .book-field--full { grid-column: 1; }
  .book-rm-wrap { grid-template-columns: 1fr; gap: 32px; }
  .book-review-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bstep-lbl { display: none; }
  .bstep-line { min-width: 20px; max-width: 40px; }
}

/* ===== BOOKING MODE SELECTOR ===== */
.book-mode-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.book-mode-selector.hidden { display: none; }
.book-steps-nav.hidden { display: none; }
.book-mode-card {
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 3px;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.1s;
}
.book-mode-card:hover {
  border-color: #c9a96e;
  transform: translateY(-2px);
}
.book-mode-icon { font-size: 2rem; margin-bottom: 16px; }
.book-mode-card h3 {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.book-mode-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 16px;
}
.book-mode-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c9a96e;
}
.hero-sub-alt {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 550px;
  margin: 24px auto 0;
  line-height: 1.6;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
.hero-btns {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 6px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  background: transparent;
  color: #fff;
  border-bottom-color: var(--gold);
}
.book-mode-change {
  display: inline-block;
  color: #666;
  font-size: 0.8rem;
  cursor: pointer;
  margin-bottom: 16px;
  text-decoration: underline;
}
.book-mode-change:hover { color: #999; }
/* ===== ROOM PICK ROW (dorm/bunk counters) ===== */
.room-pick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2a;
}
.room-pick-info { flex: 1; }

/* ===== ROOM CARDS (private rooms with photos) ===== */
.room-card {
  display: flex;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.room-card--selected {
  border-color: #c9a96e;
}
.room-card-img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}
.room-card-body {
  flex: 1;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.room-card-top { flex: 1; }
.room-card .room-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.room-card .room-desc {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 6px;
}
.room-card .room-rate {
  font-size: 0.8rem;
  color: #c9a96e;
  font-weight: 600;
}
.room-card-btn {
  background: transparent;
  border: 2px solid #555;
  color: #999;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.room-card-btn:hover {
  border-color: #c9a96e;
  color: #c9a96e;
}
.room-card-btn--selected {
  background: #c9a96e;
  border-color: #c9a96e;
  color: #111;
}
.room-card-btn--selected:hover {
  background: #b8954f;
  border-color: #b8954f;
  color: #111;
}

@media (max-width: 600px) {
  .book-mode-selector { grid-template-columns: 1fr; }
  .room-card { flex-direction: column; }
  .room-card-img { width: 100%; height: 180px; }
  .room-card-body { flex-direction: column; align-items: flex-start; }
}

/* =====================================================================
   MOBILE REBUILD (added 2026-05-06)
   Full mobile pass — kills horizontal scroll, fixes hero,
   simplifies nav, bumps tap targets and readability.
   These rules sit at the END of the file so they win the cascade.
   ===================================================================== */

/* Kill horizontal scroll site-wide */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Tablet + mobile (< 760px) ============================================ */
@media (max-width: 760px) {

  /* NAV — keep it compact, only essentials visible */
  #navbar .nav-inner {
    padding: 12px 16px;
    gap: 8px;
  }
  .nav-logo { height: 36px; }
  .nav-trust {
    margin-left: auto;
    margin-right: 8px;
    font-size: 11px;
    gap: 6px;
  }
  .nav-trust-stars { font-size: 12px; letter-spacing: 0; }
  .nav-trust-src { display: none; } /* hide the "on TripAdvisor" suffix */
  .nav-groups-link { display: none; } /* hide Groups + Study Abroad on mobile, footer covers them */
  #navbar .btn-nav {
    padding: 11px 18px;
    font-size: 13px;
    border-width: 1.5px;
  }

  /* HERO — stronger overlay so text reads on every photo,
     better stacking, and mobile-friendly button layout */
  .hero {
    min-height: auto;          /* let content drive height instead of forcing 100vh */
    padding-top: 80px;          /* clear the fixed nav */
    padding-bottom: 0;
    align-items: stretch;
    flex-direction: column;     /* stack inner content + trust strip vertically, not side-by-side */
    justify-content: flex-start;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(26,20,16,0.55) 0%,
      rgba(26,20,16,0.55) 35%,
      rgba(26,20,16,0.92) 100%
    );
  }
  .hero-inner {
    padding: 40px 20px 100px;   /* leaves room for the trust strip below */
  }
  .hero-eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 5px 12px 5px 6px;
  }
  .hero h1 {
    font-size: clamp(40px, 10vw, 58px);
    line-height: 1.05;
    max-width: 100%;
    text-wrap: pretty;          /* avoid the awkward balance clipping on small screens */
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 18px;
    max-width: 100%;
  }
  .hero-sub-alt {
    font-size: 14px;
    line-height: 1.5;
    margin: 16px 0 0;
    padding-top: 14px;
  }
  .hero-btns {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    font-size: 14px;
  }
  .hero-btns .btn-secondary {
    border-bottom: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 2px;
  }

  /* Hero trust strip — full width, sits BELOW hero content on mobile,
     never overlaps the headline */
  .hero-trust-row {
    position: relative;
    width: 100%;
    margin-top: auto;
    padding: 14px 16px;
    background: rgba(26,20,16,0.7);
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .hero-trust-inner {
    gap: 8px 18px;
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero-trust-divider { display: none; }
  .hero-trust-item { gap: 6px; }
  .hero-trust-item strong { font-size: 12px; }

  /* Body text bump for readability */
  body { font-size: 16px; }
  p { font-size: 16px; line-height: 1.65; }
  .body-large { font-size: 17px; line-height: 1.7; }

  /* Section padding tightened for mobile */
  .exclusive-section,
  .who-section,
  .compound-section,
  .life-section,
  .availability-section,
  .inquire-section,
  .reviews-section,
  .gallery-section,
  .about-section,
  .book-section { padding: 56px 16px; }

  /* Containers — tighter padding so content uses screen */
  .container { padding: 0 16px; }
}

/* Phone (< 480px) — extra-tight tweaks ================================= */
@media (max-width: 480px) {
  .nav-logo { height: 32px; }
  .nav-trust { font-size: 10px; }
  .nav-trust-rating { font-size: 12px; }
  #navbar .btn-nav {
    padding: 10px 14px;
    font-size: 12px;
  }

  .hero-inner { padding: 32px 16px 90px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-eyebrow { font-size: 9px; }
}

/* Subpage hero — mobile layout.
   Per-page <style> blocks (groups.html, study-abroad.html) are scoped
   to (min-width: 761px), so on mobile only style.css governs. No !important needed. */
@media (max-width: 760px) {
  .groups-hero,
  .sa-hero,
  .page-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: hidden;
    max-width: 100vw;
  }
  .groups-hero .hero-inner,
  .sa-hero .hero-inner,
  .page-hero .hero-inner {
    padding: 32px 20px 48px;
    max-width: 100%;
    width: 100%;
  }
  .groups-hero h1,
  .sa-hero h1,
  .page-hero h1 {
    font-size: clamp(36px, 9vw, 52px);
    line-height: 1.05;
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
  }
  .groups-hero .hero-sub,
  .sa-hero .hero-sub,
  .page-hero .hero-sub {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  /* Subpage card grids — full width */
  .g-grid,
  .stats-grid,
  .pricing-grid,
  .reviews-grid-groups,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .g-card { padding: 28px 22px; }

  /* Tables wrap or scroll horizontally on mobile */
  .itin-table { display: block; overflow-x: auto; }
  .itin-table td:first-child { width: auto; }

  /* Force long text to wrap */
  p, h1, h2, h3, h4, li, td, .hero-sub, .body-large {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

