/* ====== GLOBAL ====== */
:root {
  --bg-dark: #000000;
  --bg-darker: #111111;
  --bg-section: #1a1a1a;
  --gold: #d4a017;
  --gold-light: #f2c94c;
  --text-light: #ffffff;
  --text-muted: #cccccc;
  --accent-red: #b22222;
  --max-width: 1100px;
  --radius: 6px;
  --shadow-soft: 0 4px 12px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

a { color: var(--gold-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ====== NAV ====== */
.nav-bar {
  background: #000000ee;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav-links a {
  padding: 0.35rem 0.5rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: var(--gold);
  color: #000;
  text-decoration: none;
}

/* ====== HERO / SUB-HERO ====== */
.sub-hero {
  position: relative;
  min-height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
}

.sub-hero-inner {
  position: relative;
  padding: 3rem 1.5rem;
  text-align: center;
}

.sub-hero h1 {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sub-hero-meta {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ====== ARTICLE ====== */
.article {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
}

.article h2 {
  margin: 1.5rem 0 0.5rem;
  color: var(--gold-light);
}

.article p {
  margin-bottom: 1rem;
}

blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--gold-light);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--gold-light);
  color: #000;
  border-color: var(--gold-light);
}

/* ====== FOOTER ====== */
footer {
  background: var(--bg-darker);
  border-top: 1px solid #222;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
