/* ============================================
   Aveon Hotel — Elegant Directory Style
   Minimal. Typography-driven. Exclusive.
   ============================================ */

:root {
  --gold: #a39b81;
  --gold-light: #E1BC4B;
  --gold-deep: #9A7418;
  --silver: #B9B9B7;
  --silver-light: #D9D9D7;
  --silver-shadow: #858583;
  --text: #222222;
  --text-secondary: #666666;
  --text-muted: #999999;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #F5F3EE;
  --border: #E8E6E1;
  --border-light: #F0EDE8;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'SF Mono', 'Consolas', monospace;
  --shadow-subtle: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-elevated: 0 8px 40px rgba(0,0,0,0.08);
  --max-w: 1100px;
  --nav-h: 72px;
  --bottom-nav-h: 60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  padding-top: var(--nav-h);
  padding-bottom: var(--bottom-nav-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-deep); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--text-secondary); font-size: 0.95rem; max-width: 520px; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }
.section-title .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 16px;
}
.section-title.center .line { margin: 16px auto 0; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  min-height: 46px;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-hero-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(0,0,0,0.25);
}
.btn-hero-outline:hover { background: rgba(0,0,0,0.45); border-color: rgba(255,255,255,0.8); }
.btn-dark { background: var(--text); color: var(--white); }
.btn-dark:hover { background: #444; color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 0.72rem; min-height: 36px; }
.btn-lg { padding: 16px 40px; font-size: 0.85rem; }
.btn-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0;
  min-height: auto;
}
.btn-text::after { content: ' \2192'; }
.btn-text:hover { color: var(--gold-deep); }

/* ── Top Navigation ──────────────────────── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-h);
}
.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta { display: none; }
.nav-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.hamburger {
  width: 20px;
  height: 14px;
  position: relative;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { top: 100%; }

/* ── Bottom Navigation ───────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  height: var(--bottom-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-width: 60px;
  min-height: 44px;
  justify-content: center;
  transition: color 0.25s;
}
.bottom-nav .nav-icon {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  margin-bottom: 2px;
  transition: width 0.25s;
}
.bottom-nav .nav-icon::before,
.bottom-nav .nav-icon::after {
  content: '';
  position: absolute;
  height: 1px;
  background: currentColor;
}
.bottom-nav .nav-icon::before { left: -3px; width: 7px; top: -3px; }
.bottom-nav .nav-icon::after { left: -3px; width: 7px; top: 3px; }
.bottom-nav a.active { color: var(--gold); }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--text);
  overflow: hidden;
  padding-bottom: 0;
}
.hero-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { text-align: center; justify-content: center; }

/* ── Sections ────────────────────────────── */
.section { padding: 40px 0; }
.section-sm { padding: 24px 0 48px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--text); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-label { color: var(--gold); }
.section-dark p { color: rgba(255,255,255,0.6); }

/* ── Room Cards — Directory Style ────────── */
.room-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.room-grid > * { background: var(--white); }

.room-card {
  display: grid;
  grid-template-columns: 1fr;
  transition: background 0.3s;
}
.room-card:hover { background: var(--off-white); }

.room-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  border-radius: 8px 8px 0 0;
}
.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.room-card:hover .room-card-img img {
  transform: scale(1.04);
}
.room-card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--silver-light) 100%);
}
.room-card-img .placeholder .room-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--silver);
  opacity: 0.4;
}

.room-card-body {
  padding: 24px;
}
.room-card-type {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.room-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.room-card-meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.room-card-divider {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}
.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.room-card-amenities span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.room-card-amenities span::after { content: ' \00b7'; margin-left: 6px; }
.room-card-amenities span:last-child::after { content: ''; }
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-card-price .from {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.room-card-price .amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
}
.room-card-price .per {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Room Card Variant: Compact Grid ─────── */
.room-grid-compact { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
.room-grid-compact > * { background: var(--white); }
.room-card-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 16px;
  padding: 16px 20px;
  align-items: center;
  transition: background 0.2s;
}
.room-card-row:hover { background: var(--off-white); }
.room-card-row .row-img {
  width: 100px;
  height: 68px;
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
}
.room-card-row .row-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--silver);
  background: linear-gradient(135deg, var(--cream), var(--silver-light));
}
.room-card-row .row-info { min-width: 0; }
.room-card-row .row-type {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.room-card-row .row-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.room-card-row .row-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.room-card-row .row-price {
  text-align: right;
  white-space: nowrap;
}
.room-card-row .row-price .amount {
  font-family: var(--font-display);
  font-size: 1rem;
}
.room-card-row .row-price .per {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: block;
}

/* ── Facility Cards ──────────────────────── */
.facility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.facility-card { background: var(--white); }
.facility-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}
.facility-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.facility-card:hover .facility-card-img img { transform: scale(1.04); }
.facility-card-name {
  font-size: 0.92rem;
  margin: 14px 0 4px;
}
.facility-card-name a {
  color: var(--text);
  text-decoration: none;
}
.facility-card-name a:hover {
  color: var(--gold);
}
.facility-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ── Event Cards ─────────────────────────── */
.event-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.event-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  align-items: start;
  transition: background 0.2s;
}
.event-card:hover { background: var(--off-white); }
.event-date {
  text-align: center;
  padding-top: 2px;
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text);
  display: block;
}
.event-date .month {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-info h3 { margin-bottom: 6px; }
.event-info p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 8px; }
.event-info .meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── Offers Cards ────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.offer-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16/10;
  text-decoration: none;
}
.offer-card-img {
  position: absolute;
  inset: 0;
}
.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.offer-card:hover .offer-card-img img { transform: scale(1.06); }
.offer-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.offer-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px;
  width: fit-content;
}
.offer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 6px;
}
.offer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ── Promo Cards ─────────────────────────── */
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
.promo-card {
  padding: 28px 24px;
  background: var(--white);
  transition: background 0.2s;
}
.promo-card:hover { background: var(--off-white); }
.promo-card-discount {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.promo-card h3 { margin-bottom: 8px; }
.promo-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 12px; }
.promo-card-code {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.promo-card-valid {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

/* ── Gallery ─────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  position: relative;
}
.gallery-item .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--silver-light));
  transition: opacity 0.3s;
}
.gallery-item:hover .placeholder { opacity: 0.85; }
.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .caption { opacity: 1; }

/* ── Lightbox ────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; object-fit: contain; }
.lightbox-content { text-align: center; }
.lightbox-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { color: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { color: #fff; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 700px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  font-size: 1.1rem;
  color: var(--silver);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Contact ─────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item .value {
  font-size: 0.92rem;
  color: var(--text);
}
.contact-item a.value { color: var(--text); }
.contact-item a.value:hover { color: var(--gold); }
.contact-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.contact-social a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.contact-social a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  background: transparent;
  transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }

/* ── About ───────────────────────────────── */
.about-content { display: grid; grid-template-columns: 1fr; gap: 40px; }
.about-image {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--silver-light));
}
.about-text p { margin-bottom: 16px; color: var(--text-secondary); font-size: 0.92rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 32px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
}
.stat-item .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.stat-item .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Footer ──────────────────────────────── */
.site-footer {
  background: #a39b81;
  color: rgba(255,255,255,0.9);
  padding: 56px 0 0;
  margin-bottom: 0;
  font-size: 0.85rem;
}
.nav-logo-footer { display: flex; align-items: center; }
.nav-logo-footer img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-top { margin-bottom: 40px; }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  justify-items: center;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.footer-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.footer-brand .logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 280px; line-height: 1.7; font-size: 0.82rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.82rem; padding: 2px 0; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 3px 0;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom-inner a {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
}
.footer-bottom-inner a:hover { color: var(--white); }

/* ── Booking Bar (Mobile) ────────────────── */
.booking-bar {
  display: none;
  position: fixed;
  bottom: var(--bottom-nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 12px 24px;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
}
.booking-bar .bar-price {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.booking-bar .bar-price strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  display: block;
}

/* ── Breadcrumb + Page Header ────────────── */
.breadcrumb {
  padding: 8px 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 6px; color: var(--border); }
.page-header {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 0 20px;
}
.page-header-overlay .container {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.page-header h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.page-header .breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header .breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.4); }

/* ── Reservation Bar ── */
.reservation-bar {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 10;
}
.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 0.95fr;
  gap: 14px;
  align-items: center;
  padding: 0 48px;
}
.reservation-field {
  position: relative;
  height: 34px;
}
.reservation-field input,
.reservation-field select {
  width: 100%;
  height: 34px;
  border: none;
  outline: none;
  border-radius: 7px;
  background: var(--white);
  color: #555;
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--font-body);
}
.reservation-field input { padding-right: 38px; }
.reservation-field select { appearance: auto; cursor: pointer; }
.reservation-calendar-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #aaa;
  pointer-events: none;
}
.reservation-calendar-icon::before {
  content: "";
  position: absolute;
  inset: 2px 1px 1px;
  border: 2px solid currentColor;
  border-radius: 3px;
}
.reservation-calendar-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 7px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.reserve-button {
  height: 34px;
  border: none;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.reserve-button:hover { background: #8a8067; }
.reserve-button:active { transform: scale(0.98); }

@media (max-width: 900px) {
  .reservation-container {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 24px;
  }
  .reservation-field:first-child { grid-column: 1 / -1; }
  .reserve-button { width: 100%; grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .hero { padding-bottom: 200px; }
  .hero-actions .btn { flex: 1; min-width: 0; }
  .reservation-container { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 16px; }
  .reservation-field,
  .reservation-field input,
  .reservation-field select { height: 38px; font-size: 0.8rem; }
  .reservation-field:first-child { grid-column: 1 / -1; }
  .reserve-button { height: 38px; font-size: 0.78rem; grid-column: 1 / -1; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 32px 0; }
}

@media (max-width: 719px) {
  :root { --nav-h: 50px; }
  .top-nav .container { justify-content: center; }
  .nav-menu-btn { display: none; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .page-header { height: 140px; }
  .page-header h1 { font-size: 1.3rem; }
}

/* ── Detail Page ─────────────────────────── */
.detail-hero {
  aspect-ratio: 16/9;
  background: var(--cream);
  margin-bottom: 32px;
  overflow: hidden;
}
.detail-hero .placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream), var(--silver-light));
}
.detail-content { display: grid; grid-template-columns: 1fr; gap: 32px; }
.detail-sidebar { display: flex; flex-direction: column; gap: 16px; }
.detail-sidebar .card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
}
.detail-sidebar .card h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ── Tags/Amenities ──────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

/* ── Room Gallery ──────────────────────── */
.room-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-main {
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-main img:hover { opacity: 0.9; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery-grid img:hover { opacity: 0.85; }

/* ── Room Detail Layout ────────────────── */
.room-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.room-detail-main { display: flex; flex-direction: column; gap: 40px; }
.room-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.room-section p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── Amenities Grid ────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.amenity-item {
  background: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.amenity-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.amenity-value {
  font-size: 0.88rem;
  color: var(--text);
}

/* ── Specs Grid ────────────────────────── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.spec-item {
  background: var(--white);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.spec-value {
  font-size: 0.88rem;
  color: var(--text);
}

/* ── Policies List ─────────────────────── */
.policies-list {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.policy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 0.88rem;
}
.policy-item + .policy-item { border-top: 1px solid var(--border); }
.policy-label { color: var(--text-muted); }
.policy-value { color: var(--text); font-weight: 500; text-align: right; }

/* ── Booking Card (Sticky) ─────────────── */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-price { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.booking-from {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.booking-amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}
.booking-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.booking-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-fields label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-field-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.booking-input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
}
.booking-input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ── Map Placeholder ───────────────────── */
.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── 404 ─────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.page-404 h1 {
  font-size: 6rem;
  color: var(--silver-light);
  line-height: 1;
}
.page-404 p {
  color: var(--text-secondary);
  margin: 12px 0 32px;
  font-size: 0.95rem;
}

/* ── Sidebar Menu (Mobile) ───────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}
.sidebar-overlay.active { display: block; }
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 151;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px 28px;
  overflow-y: auto;
}
.sidebar-menu.active { right: 0; }
.sidebar-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-menu .close-btn:hover { color: var(--text); }
.sidebar-menu h3 {
  font-family: var(--font-display);
  margin-bottom: 28px;
  padding-top: 8px;
  font-size: 1.1rem;
}
.sidebar-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 0.01em;
}
.sidebar-menu a:hover { color: var(--gold); }

/* ── Filter Bar ──────────────────────────── */
.filter-bar {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 16px 0;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.25s;
  min-height: 36px;
}
.filter-btn:hover { color: var(--text); border-color: var(--text); }
.filter-btn.active {
  color: var(--white);
  background: var(--text);
  border-color: var(--text);
}

/* ── Pagination ──────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
}
.pagination a:hover { color: var(--text); border-color: var(--text); }
.pagination .active { background: var(--text); color: var(--white); border-color: var(--text); }

/* ── Booking Steps ───────────────────────── */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.booking-step .step-num {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
}
.booking-step.active { color: var(--gold); }
.booking-step.active .step-num { border-color: var(--gold); color: var(--gold); }
.booking-step .step-line {
  width: 24px;
  height: 1px;
  background: var(--border);
  margin: 0 4px;
}

/* ── WhatsApp Float ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 80;
  transition: transform 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ── Admin ───────────────────────────────── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 24px;
}
.admin-login-box {
  background: var(--white);
  padding: 48px 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-elevated);
  text-align: center;
}
.admin-login-box .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.admin-login-box .logo em { font-style: normal; color: var(--gold); }
.admin-login-box .subtitle {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.admin-login-box .form-group { text-align: left; }

.admin-layout { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
.admin-sidebar {
  display: none;
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 24px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 220px;
  z-index: 50;
}
.admin-sidebar .logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.admin-sidebar .logo h2 {
  font-size: 1rem;
  color: var(--white);
}
.admin-sidebar .logo h2 em { font-style: normal; color: var(--gold); }
.admin-sidebar .logo p {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: all 0.2s;
}
.admin-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.admin-nav a.active { color: var(--white); background: rgba(255,255,255,0.08); border-left: 2px solid var(--gold); }
.admin-main { padding: 24px; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.admin-topbar h1 { font-size: 1.2rem; }
.admin-topbar .admin-user {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  padding: 20px;
}
.stat-card .label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-card .value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  margin-top: 4px;
}

.admin-table-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.admin-table th {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
}
.admin-table tr:hover td { background: var(--off-white); }

.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
}
.badge-pending { background: #FFF8E1; color: #F57F17; }
.badge-confirmed { background: #E8F5E9; color: #2E7D32; }
.badge-cancelled { background: #FFEBEE; color: #C62828; }
.badge-active { background: #E8F5E9; color: #2E7D32; }

/* ── Responsive: Tablet (720px) ──────────── */
@media (min-width: 720px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .room-grid-compact { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .room-gallery { grid-template-columns: 1.8fr 1fr; }
  .gallery-main img { height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid img { height: 120px; }
  .room-detail-layout { grid-template-columns: 1fr 300px; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content { grid-template-columns: 1fr 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 2fr 1fr 1fr; }
  .booking-steps { gap: 0; }
}

/* ── Responsive: Desktop (1024px) ────────── */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
  .booking-bar { display: none !important; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-menu-btn { display: none; }
  .hero h1 { font-size: 3.4rem; }
  .room-grid { grid-template-columns: repeat(3, 1fr); }
  .facility-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr 1.2fr 1fr; gap: 40px; }
  .gallery-main img { height: 320px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid img { height: 140px; }
  .room-detail-layout { grid-template-columns: 1fr 340px; }
  .booking-card { position: sticky; top: 100px; }
  .section { padding: 60px 0; }
  .admin-sidebar { display: block; }
  .admin-layout { grid-template-columns: 220px 1fr; }
  .admin-main { margin-left: 220px; }
  .whatsapp-float { bottom: 32px; right: 32px; }
}
