:root {
  --gold:       #c9a84c;
  --gold-dark:  #a07830;
  --bg:         #0a0a0a;
  --bg-card:    #111111;
  --bg-section: #141414;
  --text:       #e8e0d0;
  --text-muted: #888880;
  --border:     #2a2a2a;
}

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

body {
  font-family: 'Georgia', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 4rem 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── Sections ── */
section {
  padding: 5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

section h2 {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.about { background: var(--bg-section); max-width: 100%; padding: 5rem 10%; }
.about p { margin-bottom: 1rem; color: var(--text-muted); }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.service-card h3 {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Reservations ── */
#reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin-top: 1.5rem;
}

#reservation-form input,
#reservation-form select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
}

#reservation-form input::placeholder { color: var(--text-muted); }
#reservation-form select option { background: var(--bg-card); }

#reservation-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  display: none;
  font-size: 0.9rem;
}

.status-pending { border-left: 3px solid var(--gold); color: var(--gold); }
.status-success { border-left: 3px solid #4caf50; color: #4caf50; }
.status-error   { border-left: 3px solid #e53935; color: #e53935; }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-sub {
  margin-top: 0.3rem;
  font-style: italic;
  font-size: 0.8rem;
}
