:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-dark: #8b6914;
  --red: #8b0000;
  --red-light: #b22222;
  --black: #0a0a0a;
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 70px;
}

.font-display { font-family: Georgia, "Times New Roman", serif; }
.text-gold { color: var(--gold); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--gray); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-family: Georgia, serif; font-size: 2rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.section-title p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); max-width: 120px; margin: 1rem auto; }

/* Header */
.top-banner {
  background: linear-gradient(90deg, var(--red), var(--gray), var(--red));
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
}
.top-banner a { color: var(--gold); font-weight: 600; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.logo { text-decoration: none; }
.logo h1 { font-size: 1.1rem; color: var(--gold); font-family: Georgia, serif; }
.logo span { font-size: 0.65rem; letter-spacing: 0.2em; color: rgba(201,162,39,0.7); text-transform: uppercase; }

nav.desktop-nav { display: none; gap: 1.25rem; }
nav.desktop-nav a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
nav.desktop-nav a:hover { color: var(--gold); }

.header-cta { display: none; gap: 0.75rem; align-items: center; }
.header-cta a { text-decoration: none; font-size: 0.9rem; }
.btn-outline { border: 1px solid rgba(201,162,39,0.5); color: var(--gold); padding: 0.5rem 1rem; border-radius: 4px; }
.btn-gold { background: var(--gold); color: var(--black); padding: 0.5rem 1rem; border-radius: 4px; font-weight: 600; }

.menu-toggle { background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }
.mobile-nav { display: none; flex-direction: column; padding: 1rem; border-top: 1px solid rgba(201,162,39,0.2); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #ccc; text-decoration: none; padding: 0.5rem 0; }

@media (min-width: 1024px) {
  nav.desktop-nav, .header-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&q=80') center/cover;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  border: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5), rgba(10,10,10,0.85));
}
.hero-content { position: relative; z-index: 2; padding: 6rem 1rem 2rem; max-width: 900px; }
.hero-content .eyebrow { text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; }
.hero-content h2 { font-family: Georgia, serif; font-size: clamp(2rem, 6vw, 3.5rem); line-height: 1.15; margin-bottom: 1rem; }
.hero-content .lead { color: #ccc; font-size: 1.1rem; margin-bottom: 2rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.9; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-call { border: 2px solid var(--gold); color: var(--gold); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 8px;
  padding: 1rem;
}
.stat-card strong { display: block; font-size: 1.5rem; color: var(--gold); }
.stat-card span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Cards */
.glass-card {
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.glass-card:hover { border-color: rgba(201,162,39,0.45); }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 1.1rem; }
.card-link p { color: var(--text-muted); font-size: 0.9rem; }

/* Video */
.video-wrap { position: relative; width: 100%; overflow: hidden; border-radius: 8px; background: #000; }
.video-wrap.aspect-video { aspect-ratio: 16/9; }
.video-wrap.aspect-short { aspect-ratio: 9/16; max-width: 280px; margin: 0 auto; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Gallery */
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* FAQ */
.faq-item { margin-bottom: 0.5rem; border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,162,39,0.2); }
.faq-q {
  width: 100%;
  text-align: left;
  background: rgba(10,10,10,0.9);
  border: none;
  color: var(--gold);
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-a { display: none; padding: 0 1.25rem 1rem; color: var(--text-muted); }
.faq-item.open .faq-a { display: block; }

/* Forms */
form input, form select, form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--black);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
form button {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

/* Page hero */
.page-hero {
  padding: 7rem 1rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--gray) 0%, var(--black) 100%);
}
.page-hero h1 { font-family: Georgia, serif; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto 1.5rem; }

/* Content */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-family: Georgia, serif; color: var(--gold-light); font-size: 1.5rem; margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,162,39,0.25); }
.prose p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.prose a { color: var(--gold); }
.prose strong { color: var(--gold-light); }

/* Footer */
footer {
  background: var(--gray);
  border-top: 1px solid rgba(201,162,39,0.2);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); } }
.link-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.5rem 1rem; margin: 1rem 0; }
.link-grid a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
.link-grid a:hover { color: var(--gold); }
footer h4 { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; }
footer a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
footer a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(201,162,39,0.15); color: var(--text-muted); font-size: 0.85rem; }

/* Floating */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  text-decoration: none;
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 85;
  display: flex;
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(201,162,39,0.2);
}
.sticky-bar a {
  flex: 1;
  text-align: center;
  padding: 0.85rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.sticky-call { background: var(--red); color: #fff; }
.sticky-book { background: var(--gold); color: var(--black); }

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .whatsapp-float { bottom: 1.5rem; }
}

.city-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.city-pills a {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 999px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
}
.city-pills a:hover { background: rgba(201,162,39,0.1); color: var(--gold); }

.review-stars { color: var(--gold); }
.testimonial { font-style: italic; color: #ccc; margin-bottom: 0.75rem; }

.badge-short {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-light);
  border: 1px solid rgba(178,34,34,0.4);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-top: 0.25rem;
}

.map-wrap { aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; border: 1px solid rgba(201,162,39,0.3); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
