/* ─── Base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }
p, a, li, input, textarea { font-family: 'Inter', system-ui, sans-serif; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #d4a843;
  color: #070f18;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #c9982b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem 2.25rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
  border-color: #d4a843;
  background: rgba(212, 168, 67, 0.08);
  transform: translateY(-2px);
}

/* ─── Inputs ─── */
.input-field {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.input-field::placeholder { color: rgba(255,255,255,0.3); }
.input-field:focus {
  border-color: #d4a843;
  background: rgba(255,255,255,0.08);
}

/* ─── Nav ─── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4a843;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ─── Mobile nav ─── */
#mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-link { transition: color 0.3s ease; }

/* ─── Hero animations ─── */
.hero-eyebrow {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
.hero-title {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}
.hero-sub {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.6s;
}
.hero-cta {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.8s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ─── Menu item ─── */
.menu-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1.25rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.menu-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header scroll state ─── */
#site-header.scrolled {
  background: rgba(7, 15, 24, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
  .hero-title { font-size: 2.75rem; }
  .btn-primary, .btn-secondary { width: 100%; }
}
