/* Phoenix Private Flights — multilingual About pages. */
.about-main { overflow: hidden; }

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(860px, 92vh);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--hdr-h) + clamp(70px, 10vw, 140px)) 0 clamp(80px, 11vw, 150px);
  background: #020b18;
}

.about-hero::before {
  display: none;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 11, 24, .86) 0%, rgba(2, 11, 24, .62) 38%, rgba(2, 11, 24, .16) 68%, rgba(2, 11, 24, .02) 100%),
    linear-gradient(180deg, rgba(2, 11, 24, .02) 45%, rgba(2, 11, 24, .68) 100%);
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.about-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.94) contrast(1.03) brightness(1.02);
}

.about-hero-copy { position: relative; z-index: 2; max-width: 920px; }
.about-hero .eyebrow { margin-bottom: 30px; }
.about-hero h1 { max-width: 13ch; }
.about-hero .lead { margin-top: 34px; max-width: 54ch; }
.about-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }

.about-intro,
.about-pillars,
.about-presence,
.about-cta { padding: var(--sec) 0; }

.about-intro-grid,
.about-presence-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: start;
}

.about-copy { display: grid; gap: 24px; }
.about-copy p { color: var(--ivory-2); font-size: clamp(1rem, 1.1vw, 1.14rem); line-height: 1.78; max-width: 60ch; }
.about-copy strong { color: var(--ivory); font-weight: 500; }

.about-pillars {
  position: relative;
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.005));
}

.about-section-head { display: grid; gap: 24px; max-width: 780px; margin-bottom: clamp(52px, 7vw, 90px); }
.about-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--line); }
.about-card { min-height: 320px; padding: clamp(30px, 4vw, 56px); border-right: 1px solid var(--line); }
.about-card:last-child { border-right: 0; }
.about-card-num { color: var(--champagne-3); font-size: .64rem; letter-spacing: .22em; }
.about-card h3 { margin-top: 74px; font-family: var(--serif); font-size: clamp(1.55rem, 2.4vw, 2.35rem); font-weight: 400; line-height: 1.05; }
.about-card p { margin-top: 22px; color: var(--mist); font-size: .96rem; line-height: 1.72; }

.about-presence { background: radial-gradient(circle at 12% 80%, rgba(201,154,46,.07), transparent 28%); }
.about-facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.about-fact { display: grid; grid-template-columns: 116px 1fr; gap: 24px; padding: 24px 28px; background: var(--ink); }
.about-fact dt { color: var(--champagne-3); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.about-fact dd { color: var(--ivory-2); }
.about-fact a { transition: color .35s var(--ease); }
.about-fact a:hover { color: var(--champagne-2); }

.about-note { margin-top: 30px; padding-left: 22px; border-left: 1px solid var(--champagne-3); color: var(--mist); font-size: .86rem; line-height: 1.7; }

.about-cta { position: relative; text-align: center; border-top: 1px solid var(--line-soft); }
.about-cta .eyebrow { justify-content: center; }
.about-cta .d2 { max-width: 14ch; margin: 26px auto 0; }
.about-cta .lead { margin: 28px auto 0; }
.about-cta .btn { margin-top: 38px; }

.about-footer-grid { grid-template-columns: 1.35fr .75fr .9fr; }
.about-contact-list li + li { margin-top: 10px; }
.about-contact-list a { color: var(--ivory-2); }

@media (max-width: 900px) {
  .about-hero {
    min-height: 760px;
  }
  .about-hero-media img { object-position: 64% center; }
  .about-intro-grid,
  .about-presence-grid { grid-template-columns: 1fr; gap: 42px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-card:last-child { border-bottom: 0; }
  .about-card h3 { margin-top: 40px; }
  .about-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .about-hero {
    min-height: 700px;
  }
  .about-hero::after {
    background: linear-gradient(180deg, rgba(2, 11, 24, .03) 0%, rgba(2, 11, 24, .16) 38%, rgba(2, 11, 24, .92) 78%, #020b18 100%);
  }
  .about-hero-media img { object-position: center 48%; }
  .about-hero-actions { flex-direction: column; align-items: flex-start; }
  .about-footer-grid { grid-template-columns: 1fr; }
  .about-fact { grid-template-columns: 1fr; gap: 8px; }
}
