/* ── ABOUT HERO ── */
.about-hero {
  background: var(--navy);
  padding: 160px 24px 96px;
  text-align: center;
}

.about-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}

.about-hero-sub {
  font-size: 1.08rem;
  color: rgba(250, 250, 248, 0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* ── THE PROBLEM ── */
.about-problem {
  background: var(--off);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}

.problem-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.problem-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.problem-stat-num {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.problem-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── THE SOLUTION ── */
.about-solution {
  background: var(--white);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.solution-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 30, 46, 0.06);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.solution-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.solution-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHY FLORIDA ── */
.about-florida {
  background: var(--off);
}

.florida-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.florida-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
}

.florida-num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.florida-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT CTA ── */
.about-contact {
  background: var(--navy);
  padding: 96px 24px;
  text-align: center;
}

.about-contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.about-contact-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.about-contact-sub {
  font-size: 1.05rem;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.65;
  margin-bottom: 32px;
}

.about-contact-sub strong {
  color: var(--gold);
  font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .florida-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding: 130px 20px 64px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-sub {
    font-size: 0.95rem;
  }

  .solution-card {
    padding: 24px 20px;
  }

  .florida-card {
    padding: 28px 24px;
  }
}