:root {
  --color-bg: #0d0f10;
  --color-surface: #14171a;
  --color-surface-strong: #1b1f23;
  --color-text: #f4f4f2;
  --color-muted: rgba(244, 244, 242, 0.68);
  --color-accent: #9aa483;
  --color-platinum: #c7c9c8;
  --border-soft: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(154, 164, 131, 0.1), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(199, 201, 200, 0.08), transparent 55%),
    linear-gradient(180deg, #0b0c0d 0%, #0d0f10 55%, #0f1112 100%);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

.menu-surface {
  background: rgba(11, 12, 13, 0.96);
}

.border-soft {
  border-color: var(--border-soft);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-family: "Marcellus", "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.text-muted {
  color: var(--color-muted);
}

.section-tone-bg {
  background: transparent;
}

.section-tone-surface {
  background: rgba(18, 20, 22, 0.8);
}

select,
option {
  background-color: #0e1011;
  color: #f4f4f2;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1), transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-surface {
  border-top: 1px solid var(--border-soft);
  background: rgba(10, 11, 12, 0.95);
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-title {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer-text {
  color: var(--color-text);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: rgba(244, 244, 242, 0.65);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  border-color: rgba(154, 164, 131, 0.6);
  color: var(--color-text);
}

.footer-bottom {
  padding: 0 16px 22px;
  text-align: center;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto 16px;
  max-width: 1080px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-muted);
}

@media (max-width: 767px) {
  .mobile-toggle {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
/* Prevent background layers from blocking navbar interaction */
[data-nav-shell] {
  pointer-events: auto;
}

[data-nav-shell] * {
  pointer-events: auto;
}

/* Hero / background layers must NEVER capture clicks */
.hero-scrim,
.absolute.inset-0 {
  pointer-events: none;
}
/* ===== Mobile Drawer Toggle (CSS-only) ===== */
.mobile-menu {
  transform: translateX(100%);
}

#mainNav {
  height: 80px !important;
  background: rgba(13, 15, 16, 0.85) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  display: flex !important;
  align-items: center !important;
}

.nav-container {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.logo-wrapper {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.logo-img {
  height: 40px !important;
  width: auto !important;
  display: block !important;
}

.nav-menu-desktop {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
}

.nav-link {
  font-family: 'Manrope', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.nav-link:hover {
  color: #9aa483 !important;
}

@media (max-width: 767px) {
  #mainNav { height: 70px !important; }
  .logo-img { height: 32px !important; }
  .nav-menu-desktop { display: none !important; }
}
