body {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.font-playfair {
  font-family: 'Playfair Display', serif;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.gold-gradient {
  background: linear-gradient(135deg, #C5A059 0%, #D4AF37 100%);
}

.gold-border {
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.gold-text {
  color: #D4AF37;
}

.luxury-card {
  background: rgba(18, 18, 18, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}

.luxury-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: rgba(212, 175, 55, 0.5);
}

.btn-gold {
  background: #D4AF37;
  color: #111;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-gold:hover {
  background: transparent;
  color: #D4AF37;
}

.section-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  margin: 2.5rem 0;
}

.nav-link {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  position: relative;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #D4AF37;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 50%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::before {
  background: transparent;
}

.price-table {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-row {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: background 0.3s ease;
}

.price-row:hover {
  background: rgba(212, 175, 55, 0.05);
}

.sticky-reservation {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.sticky-reservation:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(10, 10, 10, 1) 100%);
}

@view-transition { navigation: auto; }
