/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2744;
  background: #fafaf8;
  -webkit-font-smoothing: antialiased;
}

.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-inter  { font-family: 'Inter', system-ui, sans-serif; }

/* ── Nav ── */
.nav {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px rgba(26, 39, 68, 0.08);
}
.h-18 { height: 72px; }
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c9982e;
  transition: width 0.25s;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
#mobileMenu.open { max-height: 400px; }
.mobile-link { border-bottom: 1px solid #f5f5f0; }
.mobile-link:last-child { border: none; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4a843, #c9982e);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201, 152, 46, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 152, 46, 0.4);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
}

/* ── Tags ── */
.tagline-gold {
  color: #c9982e;
  letter-spacing: 0.12em;
}

/* ── Hero ── */
.hero { position: relative; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  background: linear-gradient(135deg, rgba(15, 26, 46, 0.72) 0%, rgba(26, 39, 68, 0.55) 50%, rgba(15, 26, 46, 0.4) 100%);
}
.hero-content { min-height: 100vh; display: flex; align-items: center; }
.pt-18 { padding-top: 72px; }

/* Stat cards */
.stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 3.5s ease-in-out infinite;
  min-width: 160px;
}
.stat-card:nth-child(2) { animation-delay: 0.6s; }
.stat-card:nth-child(3) { animation-delay: 1.2s; }
.stat-card:nth-child(4) { animation-delay: 1.8s; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); letter-spacing: 0.04em; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll indicator */
.scroll-indicator { pointer-events: none; }
.scroll-dot { animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}

/* ── Sections ── */
.section { padding: 100px 0; }

/* ── Amenity cards ── */
.amenity-card {
  background: #fff;
  border: 1px solid #f0ece4;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
  border-color: rgba(212, 168, 67, 0.3);
}
.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(201,152,46,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0821f;
  margin-bottom: 18px;
}

/* ── Inputs ── */
.input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e4dc;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1a2744;
  background: #fafaf8;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}
.input:focus {
  border-color: #c9982e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 152, 46, 0.1);
}
.input::placeholder { color: #b0a898; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hide scrollbar ── */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .font-playfair.text-5xl { font-size: 2.5rem; }
  .font-playfair.text-4xl { font-size: 2rem; }
}
