/* === FILE: assets/css/pages/about-us.css ===
   About Us — Jerry Trimble's story. Inherits the shared internal-page
   template (page-hero, page-content, section, cta-banner) from
   demo-flight.css, then adds the intro split and signature.
   ============================================================ */

@import url('demo-flight.css');

.page-hero { background: var(--color-primary); }
.page-hero-bg { object-position: center 40%; }

/* Centered section header (eyebrow comes from demo-flight.css). */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--color-primary);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* ─── INTRO SPLIT (photo + opening) ──────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .about-intro { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}

.about-intro-media {
  margin: 0;
  border-radius: var(--radius-lg, 10px);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: 0 28px 64px -30px rgba(17, 24, 39, .3);
}
.about-intro-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-intro-media figcaption {
  padding: .75rem 1rem;
  font-size: .8125rem;
  font-style: italic;
  color: var(--color-text-muted);
  text-align: center;
}

/* ── Intro photo doubles as the film poster (opens the video modal) ── */
.about-video-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: #0b0f17;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.about-video-poster img {
  opacity: .9;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1), opacity 300ms ease;
}
.about-video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 12, 20, .68) 2%, rgba(8, 12, 20, .12) 36%, rgba(8, 12, 20, 0) 60%);
}
.about-video-poster:hover img,
.about-video-poster:focus-visible img { transform: scale(1.04); opacity: 1; }
.about-video-poster:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }

.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, .45);
  transition: transform 220ms ease, background 220ms ease;
}
.about-video-poster:hover .about-video-play,
.about-video-poster:focus-visible .about-video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--color-accent-dark);
}
.about-video-play svg { margin-left: 3px; }

.about-video-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem 1.15rem;
  text-align: left;
}
.about-video-eyebrow {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.about-video-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
@media (prefers-reduced-motion: reduce) {
  .about-video-poster img,
  .about-video-play { transition: none; }
}

.about-intro-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.1rem;
}
.about-intro-lede {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.2vw + 1rem, 1.75rem);
  line-height: 1.4;
  color: var(--color-primary);
  margin: 0 0 1.25rem;
}
.about-intro-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

/* ─── STORY PROSE ────────────────────────────────────────────── */
.page-content { margin-inline: auto; }

/* ─── SIGNATURE CARD ─────────────────────────────────────────── */
.about-signature {
  max-width: 760px;
  margin: 2.75rem auto 0;
  padding: 1.75rem 2rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md, 8px);
}
.about-signature-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin: 0 0 .15rem;
}
.about-signature-role {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin: 0 0 .6rem;
}
.about-signature a {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

/* ─── LOCATION FACTS ─────────────────────────────────────────── */
.about-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 680px) { .about-facts { grid-template-columns: repeat(3, 1fr); } }

.about-fact {
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md, 8px);
  text-align: center;
}
.about-fact dt {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: .4rem;
}
.about-fact dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}
