@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg: #1a1008;
  --surface: #241810;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --cream: #f5ead8;
  --muted: #8a7560;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: var(--serif); }

a { text-decoration: none; color: inherit; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: rgba(26,16,8,0.92);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

.navbar-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}

.mobile-menu a.active { color: var(--gold); }

.mobile-menu.open { display: block; }

/* ── Page wrapper ── */
.page {
  max-width: 1152px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}

.page-narrow {
  max-width: 768px;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}

/* ── Page header ── */
.page-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3.5rem;
}

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0s; }
.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--gold);
  color: #1a1008;
  transition: opacity 0.2s;
}

.btn-gold:hover { opacity: 0.85; }

.btn-outline {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background-color 0.2s;
}

.btn-outline:hover { background-color: rgba(201,168,76,0.1); }

/* ── Divider ── */
.gold-line {
  width: 3rem;
  height: 1px;
  background-color: var(--gold);
  opacity: 0.4;
  margin: 1.5rem 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
}
