/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #0E0B08;
  color: #E8DDD0;
  min-height: 100vh;
  padding-bottom: 56px;
}
a { color: #E8621A; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Navbar (glassmorphism) ── */
.site-nav {
  background: rgba(14,11,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,98,26,0.4);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-nav .nav-brand {
  font-size: 1rem;
  font-weight: 800;
  color: #E8621A;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav .nav-brand:hover { text-decoration: none; opacity: 0.85; }
.site-nav .nav-links { display: flex; gap: 4px; align-items: center; }
.site-nav .nav-links a {
  color: #AA9A8A;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; opacity: 0.9; }
.btn-primary {
  background: #E8621A;
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,98,26,0.4);
}
.btn-secondary {
  background: #1C1510;
  color: #E8DDD0;
  border: 1px solid #3A2A1A;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* ── Section Shared ── */
section { padding: 72px 24px; }
.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8621A;
  margin-bottom: 12px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #E8DDD0;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #8A7A6A;
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.section-divider { border: none; border-top: 1px solid #3A2A1A; }

/* ── Footer ── */
footer {
  background: #080604;
  border-top: 1px solid #3A2A1A;
  padding: 40px 24px;
  text-align: center;
}
.footer-copy { font-size: 0.95rem; color: #AA9A8A; margin-bottom: 14px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-links a { color: #8A7A6A; }
.footer-links a:hover { color: #E8621A; }
.footer-note { font-size: 0.78rem; color: #5A4A3A; }

/* ── Support Bar ── */
.support-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1C1510;
  border-top: 1px solid #3A2A1A;
  padding: 10px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #8A7A6A;
  z-index: 100;
}
.support-bar a { color: #E8621A; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive Nav ── */
@media (max-width: 480px) {
  .site-nav .nav-links a span { display: none; }
  .btn { width: 100%; justify-content: center; }
}
