/* =============================================================================
   DANTE LABS — ABOUT PAGE STYLES
   Page-specific styles for about.html
   Requires: base.css (loaded first)
   ============================================================================= */

/* ─── ABOUT HERO (dark background, matches locked page standard) ─────────────── */
/* .hero class from base.css provides the dark bg, padding, and trust strip */

.about-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  transform: scale(1.05);
  will-change: transform;
}

.about-hero-facts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-hero-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-hero-fact-value {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.about-hero-fact-label {
  font-size: var(--font-small-size);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.about-hero-fact + .about-hero-fact {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* ─── FROM THE FOUNDER (editorial layout) ────────────────────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.founder-video {
  position: relative;
}

.leader-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.leader-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 6px;
}

.founder-title {
  font-size: var(--font-small-size);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.founder-narrative {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}

.founder-narrative + .founder-narrative {
  margin-top: 20px;
}

/* ─── PROOF BAND ─────────────────────────────────────────────────────────────── */
.about-proof-header {
  margin-bottom: 48px;
}

.about-proof-header .h2 {
  color: #ffffff;
  line-height: 1.2;
}

/* ─── PATIENT PULLQUOTE (dark, matches /our-science/ standard) ────────────────── */
.about-pullquote-wrap {
  max-width: 760px;
}

.about-pullquote-wrap .pull-quote {
  color: #ffffff;
  margin-bottom: 24px;
}

.about-pullquote-attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-pullquote-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.about-pullquote-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ─── MISSION SECTION ────────────────────────────────────────────────────────── */
.about-mission-body {
  max-width: 680px;
}

.about-mission-body p + p {
  margin-top: 24px;
}

/* ─── CLINICAL RECORD (prose, not grid) ──────────────────────────────────────── */
.about-clinical-body {
  max-width: 720px;
}

.about-clinical-body p + p {
  margin-top: 24px;
}

/* ─── OPERATIONS (geographic presence) ───────────────────────────────────────── */
.about-operations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.about-operations-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
}

.about-operations-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.about-operations-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}



/* ─── RESPONSIVE: 1024px ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-operations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── RESPONSIVE: 768px ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .about-hero .h1 {
    max-width: 100%;
    text-wrap: balance;
  }

  .about-hero-facts {
    gap: 24px;
  }

  .about-hero-fact + .about-hero-fact {
    padding-left: 24px;
  }

  .about-hero-body {
    max-width: 100%;
    text-wrap: pretty;
  }

  .founder-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-video {
    position: static;
  }

  .about-operations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }



  .about-mission-body p,
  .about-clinical-body p {
    text-wrap: pretty;
  }
}

/* ─── RESPONSIVE: 480px ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .about-hero-facts {
    flex-direction: column;
    gap: 20px;
  }

  .about-hero-fact + .about-hero-fact {
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
  }

  .about-hero .h1 {
    font-size: clamp(32px, 8vw, 44px);
  }
}