/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #161412;
  --bg-card:   #1c1a17;
  --bg-card2:  #232019;
  --accent:    #c2a33d;
  --red:       #cc1a1a;
  --red-dark:  #8b0000;
  --text:      #e2ded6;
  --text-dim:  #b5aea3;
  --border:    #332e28;
  --radius:    4px;
  --max-w:     1200px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

body > * { position: relative; z-index: 1; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(12,11,10,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 64px;
}
.logo {
  display: flex; align-items: center;
}
.logo-img { height: 40px; width: auto; }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--text-dim); font-size: .82rem; font-weight: 600;
  padding: 8px 12px; border-radius: var(--radius); transition: all .2s;
  text-transform: uppercase; letter-spacing: .5px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.05); }

.nav-cta {
  background: var(--red) !important; color: #fff !important;
  font-weight: 700 !important; padding: 8px 18px !important;
}
.nav-cta:hover { background: #e52020 !important; }

.burger {
  display: none; background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; padding: 8px;
}

@media (max-width: 960px) {
  .burger { display: block; }
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: rgba(12,11,10,.98);
    padding: 16px; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: .95rem; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; padding-top: 64px;
  position: relative; overflow: hidden; text-align: center;
  background: var(--bg);
}
/* Atmospheric forest/fog background layers */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    /* Red glow from center */
    radial-gradient(ellipse at 50% 45%, rgba(140,10,10,.12) 0%, transparent 60%),
    /* Fog layers */
    radial-gradient(ellipse at 20% 50%, rgba(40,40,35,.4) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(35,35,30,.35) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(30,28,25,.5) 0%, transparent 50%),
    /* Dark tree silhouettes */
    linear-gradient(180deg, #0d0c0a 0%, #161412 30%, #1a1816 60%, #0f0e0c 100%);
  pointer-events: none;
}
/* When hero-bg image exists, use it */
.hero.has-bg {
  background: url('hero-bg.webp') center/cover no-repeat;
  background-image: image-set(url('hero-bg.webp') type('image/webp'), url('hero-bg.jpg') type('image/jpeg'));
}
.hero.has-bg::before {
  background: linear-gradient(180deg,
    rgba(10,10,8,.7) 0%,
    rgba(10,10,8,.4) 40%,
    rgba(10,10,8,.6) 70%,
    rgba(10,10,8,.85) 100%
  );
}

.hero-logo {
  position: relative; z-index: 1;
  max-width: 660px; width: 88%;
  margin: 0 auto 32px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(140,0,0,.2));
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 680px;
}
.hero .tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #ccc8be;
  margin-bottom: 16px; font-weight: 400; line-height: 1.6;
  font-style: italic;
}
.hero p.desc {
  font-size: .95rem; color: #b5b0a6; margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== POLICE TAPE DIVIDER ===== */
.tape-divider {
  width: 100%; height: 32px; overflow: hidden; position: relative;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent),
    var(--accent) 20px,
    #1a1700 20px,
    #1a1700 40px
  );
  display: flex; align-items: center; justify-content: center;
  opacity: .5;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem; border: none;
  cursor: pointer; transition: all .25s; font-family: var(--font);
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #e52020; color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: #ddd;
  border: 1px solid #555;
}
.btn-outline:hover { background: rgba(255,255,255,.08); color: #fff; border-color: #888; }
.btn-ghost { background: rgba(255,255,255,.07); color: #bbb; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
section:nth-child(even) { background: var(--bg-card); }
section:nth-child(odd) { background: var(--bg); }

.section-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 4px; color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900;
  color: #fff; margin-bottom: 18px; line-height: 1.2;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-desc {
  font-size: 1rem; color: var(--text-dim); max-width: 620px;
  margin-bottom: 48px; line-height: 1.8;
}

/* ===== RED BRUSH UNDERLINE (for titles) ===== */
.brush-underline {
  position: relative; display: inline-block;
}
.brush-underline::after {
  content: ''; position: absolute; bottom: -6px; left: -4px;
  width: 110%; height: 6px;
  background: var(--red);
  border-radius: 2px;
  opacity: .7;
  transform: skewX(-8deg);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.about-grid .about-text p { margin-bottom: 20px; color: var(--text-dim); line-height: 1.8; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  border-left: 3px solid var(--red);
  transition: border-color .3s;
}
.pillar:hover { border-left-color: #fff; }
.pillar h3 { font-size: 1rem; color: #fff; margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pillar p { font-size: .88rem; color: var(--text-dim); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ===== EPISODES / CARDS ===== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all .3s;
}
.card:hover { border-color: var(--red); transform: translateY(-2px); }
.card-thumb {
  height: 190px; background: #0f0e0d;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: .85rem; position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(255,255,255,.01) 1px, rgba(255,255,255,.01) 2px);
}
.card-thumb .play-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; transition: transform .3s;
  box-shadow: 0 0 30px rgba(204,26,26,.3);
}
.card:hover .play-icon { transform: scale(1.1); }
.card-thumb-link { display: block; text-decoration: none; }
.card-body { padding: 20px; }
.card-tag {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); margin-bottom: 8px;
}
.card-body h3 { font-size: 1.05rem; color: #fff; margin-bottom: 8px; font-weight: 700; }
.card-body p { font-size: .88rem; color: var(--text-dim); margin-bottom: 16px; }
.card-link {
  font-size: .82rem; font-weight: 700; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}
.card-link:hover { color: #fff; }

/* ===== CASES TABLE ===== */
.cases-list { display: flex; flex-direction: column; gap: 8px; }
.case-item {
  display: grid;
  grid-template-columns: 1fr 1fr 140px 140px;
  gap: 16px; align-items: center;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px;
  border-left: 3px solid var(--red);
  transition: border-color .3s;
}
.case-item:hover { border-left-color: #fff; }
.case-name { font-weight: 700; color: #fff; font-size: .95rem; }
.case-place { color: var(--text-dim); font-size: .88rem; }
.case-date { color: var(--text-dim); font-size: .88rem; text-align: center; }
.case-status {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 12px; border-radius: 2px;
  text-align: center; white-space: nowrap;
}
.status-missing { background: rgba(204,26,26,.15); color: #e54040; }
.status-found { background: rgba(80,180,80,.12); color: #5ab85a; }
.status-active { background: rgba(194,163,61,.12); color: var(--accent); }

@media (max-width: 640px) {
  .case-item { grid-template-columns: 1fr 1fr; }
  .case-date { text-align: left; }
}

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  border-top: 3px solid var(--red);
  transition: border-color .3s;
}
.team-card:hover { border-top-color: #fff; }
.team-photo {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  margin-bottom: 18px;
  border: 3px solid var(--red);
  box-shadow: 0 0 20px rgba(204,26,26,.2);
}
.team-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 4px; font-weight: 800; }
.team-card .role { font-size: .8rem; color: var(--red); margin-bottom: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.team-card p { font-size: .88rem; color: var(--text-dim); line-height: 1.8; }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== CTA / INFO SECTION ===== */
.cta-section {
  text-align: center; padding: 90px 0;
  background: var(--bg);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(140,0,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title { margin-left: auto; margin-right: auto; }
.cta-section .section-desc { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== CONTACT FORM ===== */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.form-info h3 { font-size: 1.2rem; color: #fff; margin-bottom: 16px; }
.form-info p { color: var(--text-dim); margin-bottom: 24px; line-height: 1.8; }
.form-info .contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim); font-size: .92rem;
}
.contact-method svg { color: var(--red); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-dim);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  color: var(--text); font-family: var(--font); font-size: .92rem;
  transition: border-color .3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.checkbox-group {
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--text-dim);
}
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--red);
}

.form-note {
  font-size: .78rem; color: var(--text-dim); line-height: 1.6;
  padding: 12px 14px; background: rgba(204,26,26,.04);
  border-left: 3px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0;
}

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== COOPERATION ===== */
.collab-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.collab-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  border-left: 3px solid var(--red);
  transition: border-color .3s;
}
.collab-card:hover { border-left-color: #fff; }
.collab-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.collab-card p { color: var(--text-dim); font-size: .88rem; }

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border); padding: 40px 0 28px;
  background: #080807;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 36px;
}
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand p { color: var(--text-dim); font-size: .85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-dim); margin-bottom: 14px;
}
.footer-col a { display: block; color: var(--text-dim); font-size: .85rem; padding: 3px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: .75rem; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  color: var(--text-dim); font-size: 1.1rem; transition: color .2s;
}
.footer-socials a:hover { color: var(--red); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE SECTIONS ===== */
.page-hero {
  padding: 130px 0 50px;
  background: linear-gradient(180deg, rgba(140,0,0,.04) 0%, var(--bg) 100%);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff;
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.page-hero p { color: var(--text-dim); max-width: 580px; font-size: 1rem; }

.content-section { padding: 50px 0; }
.content-section p { color: var(--text-dim); margin-bottom: 18px; line-height: 1.8; max-width: 720px; }

/* ===== LEGAL ===== */
.legal-content { max-width: 720px; }
.legal-content h2 { color: #fff; font-size: 1.2rem; margin: 28px 0 10px; }
.legal-content p, .legal-content li { color: var(--text-dim); line-height: 1.8; margin-bottom: 10px; }
.legal-content ul { padding-left: 24px; list-style: disc; }

/* ===== SOCIAL BAR (sticky) ===== */
.social-bar {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 2px;
}
.social-bar a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: #fff;
  transition: all .25s; opacity: .7;
}
.social-bar a:hover { opacity: 1; transform: scale(1.15); }
.sb-yt { background: #c22; }
.sb-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sb-fb { background: #1877f2; }
.sb-tt { background: #111; }
.sb-coffee { background: #d4a017; color: #111 !important; }

/* Mobile: sticky bottom bar, solid, always visible */
@media (max-width: 768px) {
  .social-bar {
    position: fixed; top: auto; left: 0; right: 0; bottom: 0;
    transform: none; flex-direction: row;
    justify-content: stretch;
    background: #0a0a0a;
    border-top: 1px solid #333;
    box-shadow: 0 -4px 20px rgba(0,0,0,.8);
  }
  .social-bar a {
    flex: 1; height: 50px; border-radius: 0; opacity: 1;
  }
  body { padding-bottom: 50px; }
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.video-modal.active { display: flex; }
.video-modal-inner {
  position: relative; width: 90%; max-width: 900px;
}
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; padding: 4px 12px;
  opacity: .7; transition: opacity .2s;
}
.video-modal-close:hover { opacity: 1; }
.video-modal-player {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #000; border-radius: 4px; overflow: hidden;
  box-shadow: 0 0 60px rgba(204,26,26,.15);
}
.video-modal-player iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }

/* Content always visible */
.fade-in {
  opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #444; }
