:root {
  --navy: #0E1B2E;
  --navy-2: #16293F;
  --line: #2A3F58;
  --gold: #E3C77E;
  --gold-dark: #C4A55A;
  --text: #EAF1FA;
  --muted: #8CA0B8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3, .serif { font-family: Cambria, Georgia, 'Times New Roman', serif; }

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 27, 46, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-family: Cambria, Georgia, serif;
  font-weight: bold;
  font-size: 1.15rem;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.brand span { color: var(--gold); }
nav { display: flex; gap: 0.4rem; flex-wrap: wrap; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
nav a:hover { color: var(--text); border-color: var(--line); }
nav a.active {
  color: var(--gold);
  border-color: var(--gold-dark);
  background: var(--navy-2);
}

/* Layout */
main { flex: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
h1 { font-size: 2.4rem; color: #FFFFFF; margin-bottom: 0.8rem; line-height: 1.2; }
.lede { color: var(--muted); font-size: 1.06rem; max-width: 46rem; margin-bottom: 2.4rem; }
.lede strong { color: var(--text); }

/* Video cards */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.6rem; }
.video-card {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.video-card video { width: 100%; display: block; aspect-ratio: 16 / 9; background: #000; }
.video-card.portrait video { aspect-ratio: auto; max-height: 520px; }
.video-card .meta { padding: 0.9rem 1.1rem 1.1rem; }
.video-card h3 { color: #FFFFFF; font-size: 1.05rem; margin-bottom: 0.15rem; }
.video-card p { color: var(--muted); font-size: 0.85rem; }

.feature {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}
.feature video { width: 100%; display: block; background: #000; }
.caption { color: var(--muted); font-style: italic; font-size: 0.85rem; padding: 0.8rem 1.2rem; border-top: 1px solid var(--line); }

/* Chips & stats */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 1.4rem 0; }
.chip {
  background: var(--navy-2);
  border: 1px solid #334964;
  color: var(--text);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.chip b { color: var(--gold); font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.2rem; margin: 2.2rem 0 0; }
.stat .num { font-family: Cambria, Georgia, serif; font-weight: bold; font-size: 1.9rem; color: var(--gold); }
.stat .lbl { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

.section-title { color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; margin: 2.6rem 0 1.2rem; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  background: #0B1626;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-inner .copyright { color: var(--muted); font-size: 0.82rem; }
.footer-inner .contact { color: var(--muted); font-size: 0.82rem; }
.footer-inner a { color: var(--gold); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  h1 { font-size: 1.8rem; }
  .nav-inner { justify-content: center; }
}
