/* ============================================================
   HIDDEN EPOCH — Brand: #000 / #111 bg, #D4AF37 gold accent
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #000000;
  --charcoal:#111111;
  --gold:    #D4AF37;
  --gold-dim:#a8892a;
  --stone:   #2a2a2a;
  --text:    #c8c2b4;
  --text-dim:#7a7468;
  --white:   #f0ead8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 26px;
  line-height: 1.75;
}

h1, h2, h3, h4, .section-label {
  font-family: 'Cinzel', 'Times New Roman', serif;
  letter-spacing: 0.08em;
}

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

img { display: block; max-width: 100%; }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 42px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: #c09b28; opacity: 1; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background 0.2s;
}
.btn-outline:hover { background: rgba(212,175,55,0.08); opacity: 1; }

.btn-outline-sm {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-top: 10px;
}
.btn-outline-sm:hover { background: rgba(212,175,55,0.1); opacity:1; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links a:hover { color: var(--gold); opacity: 1; }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 8px 22px;
}
.nav-links .nav-cta:hover { background: rgba(212,175,55,0.08); }

/* ---- NAV SOCIALS ---- */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 8px;
  padding-left: 22px;
  border-left: 1px solid rgba(212,175,55,0.2);
}
.nav-socials a {
  color: var(--text-dim);
  display: flex;
  align-items: center;
}
.nav-socials a:hover { color: var(--gold); opacity: 1; }
.nav-socials svg { width: 20px; height: 20px; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 52px;
  background: var(--black);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 22px;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 0 30px rgba(212,175,55,0.12);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-shadow: 0 0 40px rgba(212,175,55,0.2);
}
.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 32px;
  opacity: 0.85;
}

/* ---- AFFILIATE HERO STRIP ---- */
.affiliate-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  padding: 0;
}
.affiliate-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.aff-strip-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 36px;
  border-right: 1px solid rgba(212,175,55,0.08);
  transition: background 0.2s;
  color: inherit;
  text-decoration: none;
}
.aff-strip-card:last-child { border-right: none; }
.aff-strip-card:hover { background: rgba(212,175,55,0.04); opacity: 1; }
.aff-strip-icon { font-size: 2rem; flex-shrink: 0; }
.aff-strip-text { display: flex; flex-direction: column; }
.aff-badge {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.aff-badge--nord { background: #4687FF; }
.aff-badge--mag  { background: #1a3a5c; border: 1px solid #2d6aa0; }
.aff-badge--aud  { background: #FF9900; color: #000; }
.aff-strip-label {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 3px;
  line-height: 1.3;
}
.aff-strip-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.aff-strip-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 8px;
}
.aff-strip-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 1px;
  display: inline-block;
}

/* ---- SOCIAL STRIP ---- */
.social-strip {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  padding: 18px 0;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.social-link svg { width: 17px; height: 17px; color: var(--gold); }
.social-link:hover { color: var(--gold); opacity: 1; }
.strip-divider { color: rgba(212,175,55,0.2); font-size: 1.2rem; }

/* ---- SECTIONS ---- */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-inner h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1.2;
}
.center-cta { text-align: center; margin-top: 56px; }

/* ---- VIDEO GRID ---- */
.investigations { background: var(--black); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.video-card {
  background: var(--charcoal);
  border: 1px solid rgba(212,175,55,0.1);
  overflow: hidden;
  transition: border-color 0.2s;
}
.video-card:hover { border-color: rgba(212,175,55,0.35); }
.video-embed {
  position: relative;
  aspect-ratio: 9/5;
  background: var(--stone);
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-tiktok-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.placeholder-icon { font-size: 2rem; color: var(--gold); opacity: 0.5; }
.video-info { padding: 28px; }
.video-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.video-info h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.video-info p {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---- ARCHIVE ---- */
.archive {
  background: var(--charcoal);
  border-top: 1px solid rgba(212,175,55,0.08);
}
.archive-sub {
  color: var(--text-dim);
  margin-top: -32px;
  margin-bottom: 48px;
  max-width: 600px;
  font-size: 1.05rem;
}
.archive-grid { display: flex; flex-direction: column; gap: 0; }
.archive-card {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  align-items: flex-start;
}
.archive-card:first-child { border-top: 1px solid rgba(212,175,55,0.08); }
.archive-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: rgba(212,175,55,0.2);
  font-weight: 700;
  min-width: 60px;
  line-height: 1;
  padding-top: 4px;
}
.archive-text h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.archive-text p {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.coming-soon {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  border: 1px solid rgba(212,175,55,0.2);
  padding: 4px 12px;
  display: inline-block;
}

/* ---- AFFILIATES SECTION ---- */
.affiliates { background: var(--black); border-top: 1px solid rgba(212,175,55,0.08); }
.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.affiliate-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--charcoal);
  border: 1px solid rgba(212,175,55,0.12);
  padding: 32px;
  transition: border-color 0.2s;
  color: inherit;
}
.affiliate-card:hover { border-color: rgba(212,175,55,0.4); opacity: 1; }
.aff-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; padding-top: 4px; }
.aff-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.aff-text p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.55;
}
.aff-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- JOIN / EMAIL ---- */
.join {
  background: var(--charcoal);
  border-top: 1px solid rgba(212,175,55,0.1);
  text-align: center;
  padding: 100px 24px;
}
.join-inner { max-width: 600px; margin: 0 auto; }
.join-logo img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 1px solid rgba(212,175,55,0.3);
}
.join-inner .section-label { margin-bottom: 12px; }
.join-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.2;
}
.join-inner > p {
  color: var(--text-dim);
  margin-bottom: 38px;
  font-size: 1.05rem;
}
.email-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 18px;
}
.email-form input {
  flex: 1;
  background: var(--black);
  border: 1px solid rgba(212,175,55,0.2);
  border-right: none;
  color: var(--white);
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  padding: 16px 22px;
  outline: none;
}
.email-form input::placeholder { color: var(--text-dim); }
.email-form input:focus { border-color: rgba(212,175,55,0.5); }
.email-form .btn-gold { flex-shrink: 0; white-space: nowrap; }
.form-note { font-size: 0.85rem; color: var(--text-dim); opacity: 0.6; margin: 0; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.12);
  padding: 64px 40px 44px;
  text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid rgba(212,175,55,0.2);
}
.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 26px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 34px;
}
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); opacity: 0.4; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .affiliate-strip-inner { grid-template-columns: 1fr; }
  .aff-strip-card { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.08); }
}
@media (max-width: 640px) {
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-cta):not(.nav-socials *) { display: none; }
  .email-form { flex-direction: column; }
  .email-form input { border-right: 1px solid rgba(212,175,55,0.2); border-bottom: none; }
  .archive-card { flex-direction: column; gap: 12px; }
  .archive-num { font-size: 1.3rem; }
}
