/* =========================================
   DISCLOSURES & LEGAL (TYPOGRAPHY & CONTENT)
========================================= */

.page-hero-disclosure {
  background-image: 
    linear-gradient(to top, var(--color-curtain-black) 0%, transparent 40%),
    url('../assets/images/backgrounds/contact-bg.webp');
}

.legal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px; /* Matches the narrative-content max-width from about.css */
  margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.legal-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-effect-gold-20);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.legal-date {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.25em; /* Matched to quote-author / playbill-category */
  color: var(--color-antique-gold);
}

.legal-date strong {
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* =========================================
   CONTENT TYPOGRAPHY
========================================= */

.legal-content {
  text-align: left;
}

.legal-intro p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3xl);
  font-weight: 300;
}

.legal-section {
  margin-bottom: var(--space-3xl);
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.legal-section p {
  font-family: var(--font-body);
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary); /* Matches intro-text-blocks */
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* =========================================
   DIVIDER & COMMITMENT (THEATRICAL FINISH)
========================================= */

.legal-divider {
  border: none;
  height: 1px;
  /* Matches the continuous gold line from your timeline */
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    var(--color-effect-gold-20) 50%, 
    transparent 100%
  );
  margin: var(--space-4xl) 0;
}

.legal-commitment {
  text-align: center;
  padding: 0 var(--space-xl);
}

.legal-commitment h2 {
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-antique-gold);
  margin-bottom: var(--space-lg);
}

.legal-commitment p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-md);
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */

@media (max-width: 992px) {
  .legal-title {
    font-size: 3.5rem;
  }
  
  .legal-commitment p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .legal-header {
    margin-bottom: var(--space-3xl);
  }
  
  .legal-title {
    font-size: 2.5rem;
  }

  .legal-intro p {
    font-size: 1.1rem;
    margin-bottom: var(--space-2xl);
  }

  .legal-section {
    margin-bottom: var(--space-2xl);
  }

  .legal-section h2 {
    font-size: 1.75rem;
  }

  .legal-section p {
    font-size: var(--font-size-base); /* Drops to standard text size on mobile */
  }

  .legal-commitment {
    padding: 0;
  }
  
  .legal-commitment p {
    font-size: 1.5rem;
  }
}