/* ==========================================================================
   css/home.css - HOME-SPECIFIC ADVANCED LAYOUT CONTROLS
   ========================================================================== */

/* --- HERO CORE RENDER --- */
.hero-header {
  position: relative;
  height: 90vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-prime);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 18, 16, 0.95) 40%, rgba(7, 18, 16, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--site-pad);
}

.hero-content h1 {
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -3px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--turquoise);
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
}

.hero-subtitle {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--soft-white);
  max-width: 700px;
}

.hero-actions { display: flex; gap: 16px; margin-top: 48px; }

/* --- GUARDIANS PREVIEW SECTION --- */
.about-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  background: var(--paper-bg);
}

.about-copy h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--dark-prime);
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.5;
  color: #1e293b;
  margin: 32px 0 24px;
}

.about-note { font-size: 16px; color: #475569; }
.about-cards { display: flex; flex-direction: column; gap: 24px; }

/* --- ISSUE 2 & 4: CLASSES ELIMINATING INLINE SCRAPS --- */
.matrix-card {
  padding: 40px;
  border-radius: 8px;
  background: var(--white);
  border-left: 4px solid var(--dark-prime);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.matrix-title {
  color: var(--dark-prime);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-size: 14px;
}

.matrix-bullet {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.matrix-bullet:last-child { margin-bottom: 0; }

.section-title { font-size: clamp(32px, 4vw, 48px); font-family: var(--font-serif); font-style: italic; font-weight: bold; text-align: center; margin-bottom: 50px; }
.white-title { color: var(--white); }

/* --- PORTAL CONFIGURATIONS --- */
.hub-card { border-top: 3px solid var(--turquoise); }
.dark-hub-card { border-top: 3px solid var(--dark-prime); background: var(--dark-surface); color: var(--white); }
.dark-hub-card .preview-card-title { color: var(--white); }
.dark-hub-card .preview-card-copy { color: var(--text-muted); }

.preview-card-title { font-size: 22px; font-weight: 800; margin-bottom: 16px; color: var(--dark-prime); }
.preview-card-copy { color: #475569; font-size: 15px; margin-bottom: 24px; flex-grow: 1; }
.preview-link { text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--turquoise); text-transform: uppercase; align-self: flex-start; }
.highlight-link { color: var(--dark-prime); font-weight: 900; }
.structural-link { color: var(--turquoise); font-weight: 900; }

@media (max-width: 1024px) {
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .hero-actions { flex-direction: column; }
}