/* ==========================================================================
   ABOUT-DESKTOP.CSS (Pro Version)
   ========================================================================== */

.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85)), url(/assets/heros/about_hero_desktop.jpg);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  padding-top: 25rem;
}

/* --- Typography & Rhythm --- */
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8rem 0 0;
  background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.about-chapter {
  padding: 6rem 0;
  max-width: 90rem;
  margin: 0 auto;
}

.chapter-title {
  font-family: var(--ff-headers);
  font-size: 2.8rem; /* Bumped for hierarchy */
  color: var(--fc-muted); 
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  margin-bottom: 3rem;
  border-left: 0.4rem solid var(--signature-orange);
  padding-left: 2rem;
}

.chapter-title.error-color {
  border-left-color: var(--fc-accent-red);
}

.about-text {
  font-family: var(--ff-main);
  font-size: 1.6rem; /* Standardized to 16px */
  line-height: 1.8;
  color: var(--fc-main);
  margin-bottom: 2.5rem;
}

.lead-text {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--signature-orange);
  font-family: var(--ff-accent); /* Updated to Playfair Display */
}

/* --- Chapter 2 Grid Layout --- */
.chapter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

/* --- Image Styling --- */
.framed-image {
  width: 100%;
  border-radius: 0.4rem;
  border: 0.4rem solid #fff; 
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.5);
  transform: rotate(2deg); 
  transition: transform 0.3s ease;
}

.framed-image:hover {
  transform: rotate(0deg) scale(1.02);
}

figcaption {
  text-align: center;
  font-size: 1.2rem;
  color: var(--fc-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* --- Alert Box (Chapter 4) --- */
.alert-box {
  background: rgba(234, 84, 85, 0.1); /* Matches --fc-accent-red */
  border-left: 0.4rem solid var(--fc-accent-red);
  padding: 1rem;
  margin-bottom: 3rem;
}

/* --- FINAL CTA SECTION --- */
.final-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 2rem;
  margin: 3rem auto 5rem; 
}

.final-cta-card {
  position: relative;
  width: 100%;
  max-width: 90rem; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
  
  padding: 6rem 4rem;
  background: linear-gradient(
    180deg, 
    rgba(248, 194, 93, 0.08) 0%, 
    rgba(0, 0, 0, 0.4) 100%       
  );
  
  border: 1px solid rgba(248, 194, 93, 0.2);
  border-radius: 2rem; 
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5); 
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%; 
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signature-orange), transparent);
  opacity: 0.7;
}

.cta-title {
  font-family: var(--ff-headers);
  font-size: 4rem; 
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin: 0;
}

.cta-description {
  font-family: var(--ff-main);
  font-size: 1.8rem;
  color: #ccc;
  max-width: 60rem;
  line-height: 1.6;
}

.cta-description strong {
  color: #fff; 
}

.btn-petition {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--ff-headers);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  background-color: var(--signature-orange);
  border-radius: 5rem; 
  transition: var(--transition-smooth);
  box-shadow: 0 0.4rem 1.5rem rgba(248, 194, 93, 0.3);
}

.btn-petition:hover {
  transform: translateY(-0.3rem);
  background-color: #fff; 
  box-shadow: 0 0.8rem 2.5rem rgba(255, 255, 255, 0.2);
}

.btn-large {
  padding: 2rem 5rem; 
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.cta-subtext {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--fc-muted);
  font-style: italic;
  opacity: 0.7;
}

/* --- Horizontal Checklist --- */
.petition-check-list {
  display: flex;
  justify-content: center;
  gap: 4rem;
  list-style: none;
  padding: 0;
}

.petition-check-list li {
  font-family: var(--ff-headers);
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}

.petition-check-list i {
  color: var(--signature-orange);
  font-size: 1.8rem;
}