/* FlyBeena — subpage components (ACMI, Charter, Fleet, About, Contact).
   Loaded after acmi.css. Reuses tokens + button/footer/header system. */

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-tertiary); letter-spacing: -0.005em; white-space: nowrap; }
.crumb a { color: var(--text-tertiary); text-decoration: none; }
.crumb a:hover { color: var(--fb-accent); }
.crumb .sep { color: var(--fb-grey-300); }
.crumb--on-dark, .crumb--on-dark a { color: rgba(255,255,255,0.6); }
.crumb--on-dark .sep { color: rgba(255,255,255,0.3); }

/* ---------- Split page hero (ACMI / Charter) ---------- */
.phero { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
.phero-copy { padding: clamp(44px, 5vw, 80px) clamp(40px, 4vw, 72px) clamp(44px, 5vw, 80px) var(--edge); display: flex; flex-direction: column; justify-content: center; }
.phero-copy .eyebrow { margin: 22px 0 18px; }
.phero-copy h1 { max-width: 16ch; }
.phero-copy .lede { margin-top: 22px; }
.phero-copy .phero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.phero-media { position: relative; min-height: 380px; overflow: hidden; }
.phero-media .ph { position: absolute; inset: 0; }

/* ---------- Full-bleed photo hero (Fleet / About) ---------- */
.fhero { position: relative; color: #fff; overflow: hidden; }
.fhero .ph { position: absolute; inset: 0; }
.fhero .mask { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,31,71,.62), rgba(10,31,71,.48)); }
.fhero .inner { position: relative; z-index: 1; padding-block: clamp(80px, 11vw, 144px); }
.fhero--center { text-align: center; }
.fhero--center .eyebrow { color: var(--fb-blue-300); }
.fhero--center h1 { margin: 16px auto 0; max-width: 18ch; }
.fhero--center .lede { margin: 18px auto 0; color: rgba(255,255,255,0.82); max-width: 52ch; }
.fhero h1 { color: #fff; }
.fhero--left .crumb { margin-bottom: clamp(96px, 13vw, 180px); }
.fhero--left h1 { max-width: 14ch; }
.fhero--left .lede { color: rgba(255,255,255,0.82); margin-top: 18px; max-width: 40ch; }

/* ---------- Chip bar (navy strip under hero) ---------- */
.chipbar { background: var(--fb-navy); color: #fff; }
.chipbar .wrap { display: flex; align-items: center; gap: 12px; padding-block: 15px; flex-wrap: wrap; }
.chip { font-size: 13px; font-weight: 500; letter-spacing: -0.005em; padding: 7px 15px; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); color: rgba(255,255,255,0.92); white-space: nowrap; }
.chipbar .note { margin-left: auto; font-size: 13px; color: var(--fb-blue-300); display: inline-flex; align-items: center; gap: 8px; }
.chipbar .note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--fb-cyan); box-shadow: 0 0 0 3px rgba(58,176,232,0.25); }

/* ---------- Section heading ---------- */
.shead { margin-bottom: clamp(28px, 3.5vw, 40px); }
.shead .eyebrow { margin-bottom: 16px; }
.shead h2 { max-width: 22ch; }

/* ---------- Service card grid (1 navy + light) ---------- */
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.svc-card { background: var(--surface-sunk); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 36px); display: flex; flex-direction: column; min-height: 196px; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-standard); }
.svc-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 12px; }
.svc-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.5; margin: 0 0 24px; max-width: 44ch; }
.svc-card .arrow-link { margin-top: auto; }
.svc-card--navy { background: var(--fb-navy); color: #fff; }
.svc-card--navy p { color: rgba(255,255,255,0.74); }
.svc-card--accent { background: var(--fb-accent); color: #fff; }
.svc-card--accent p { color: rgba(255,255,255,0.86); }
a.svc-card:hover { transform: translateY(-3px); }
a.svc-card { text-decoration: none; color: inherit; }
a.svc-card.svc-card--navy:hover { background: var(--fb-navy-700); }

/* ---------- Why-list (alternating benefit rows) ---------- */
.why { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.why-head { position: sticky; top: calc(var(--nav-height) + 24px); }
.why-head h2 { max-width: 12ch; }
.why-head p { margin-top: 18px; color: var(--text-secondary); max-width: 34ch; font-size: 16px; line-height: 1.5; }
.why-list { display: flex; flex-direction: column; }
.why-item { display: grid; grid-template-columns: 52px 1fr; gap: 22px; padding: 28px 0; border-top: 1px solid var(--fb-ink-50); }
.why-item:last-child { border-bottom: 1px solid var(--fb-ink-50); }
.why-item .n { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fb-accent); letter-spacing: 0.04em; }
.why-item h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.why-item p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.5; max-width: 52ch; }

/* ---------- Feature split reuse (text + photo) — defined in acmi.css ---------- */

/* ---------- Stats bar ---------- */
.stats { background: var(--fb-navy); color: #fff; }
.stats .wrap { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: clamp(22px, 3vw, 32px) 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.12); }
.stat:last-child { border-right: 0; }
.stat .v { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); line-height: 1; letter-spacing: -0.02em; }
.stat .l { font-size: 12px; color: var(--fb-blue-300); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 9px; }

/* ---------- Fleet spec card ---------- */
.fleetcard { background: var(--surface-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--outline-ink); }
.fleetcard .photo { position: relative; aspect-ratio: 24 / 9; }
.fleetcard .photo .nameplate { position: absolute; left: 0; bottom: 0; background: var(--fb-navy); color: #fff; padding: 14px 24px; border-top-right-radius: var(--radius-md); }
.fleetcard .photo .nameplate .t { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em; }
.fleetcard .photo .nameplate .s { font-size: 12px; color: var(--fb-blue-300); margin-top: 2px; }
.fleetcard .body { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--fb-ink-08); }
.fleetcard .panel { background: var(--surface-card); padding: clamp(28px, 3.5vw, 44px); }
.fleetcard .panel.sunk { background: var(--surface-sunk); }
.fleetcard .panel .eyebrow { margin-bottom: 22px; }
.spec-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--fb-ink-08); font-size: 15px; }
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { color: var(--text-tertiary); }
.spec-row .v { color: var(--text-primary); font-weight: 500; }
.cabin { background: #fff; box-shadow: var(--outline-ink); border-radius: var(--radius-md); aspect-ratio: 16/7; position: relative; overflow: hidden; }
.cabin .ph { position: absolute; inset: 0; }
.cabin-legend { display: flex; gap: 20px; margin-top: 16px; font-size: 13px; color: var(--text-secondary); }
.cabin-legend .sw { display: inline-flex; align-items: center; gap: 8px; }
.cabin-legend .sw i { width: 12px; height: 12px; border-radius: 3px; background: var(--fb-accent); }
.cabin-legend .sw.alt i { background: var(--fb-navy); }
/* Seat-map schematic */
.seatmap { background: #fff; box-shadow: var(--outline-ink); border-radius: var(--radius-md); padding: 26px 22px; overflow: hidden; }
.seatmap-frame { display: flex; gap: 5px; justify-content: center; align-items: center; }
.seatcol { display: grid; grid-template-rows: repeat(3, 11px) 9px repeat(3, 11px); gap: 4px; }
.seatcol .seat { width: 11px; height: 11px; border-radius: 3px; background: var(--fb-blue-300); }
.seatcol.exit .seat { background: var(--fb-navy); }
.seatcol .aisle { height: 9px; }

/* ---------- Expansion note row ---------- */
.expand { display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--surface-sunk); border-radius: var(--radius-md); padding: clamp(26px, 3vw, 38px); flex-wrap: wrap; }
.expand .badge-pill { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); background: #fff; box-shadow: var(--outline-ink); padding: 6px 12px; border-radius: var(--radius-pill); }
.expand h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; margin: 16px 0 8px; }
.expand p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.5; max-width: 46ch; }
.expand .eis { text-align: right; }
.expand .eis .l { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); }
.expand .eis .v { font-family: var(--font-display); font-size: 27px; color: var(--fb-accent); letter-spacing: -0.01em; margin-top: 4px; }
.expand .eis .s { font-size: 13px; color: var(--text-tertiary); margin-top: 4px; }

/* ---------- Operate band (navy 3-col) ---------- */
.operate { background: var(--fb-navy); color: #fff; }
.operate .shead .eyebrow { color: var(--fb-blue-300); }
.operate-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.22); }
.operate-col { padding: clamp(22px, 3vw, 32px); background: var(--fb-navy); }
.operate-col .codes { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--fb-cyan); display: block; margin-bottom: clamp(28px, 4vw, 44px); }
.operate-col h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 12px; }
.operate-col p { margin: 0; color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.5; }

/* ---------- Cert cards (light, 3-up) ---------- */
.certcards { display: flex; gap: 14px; flex-wrap: wrap; }
.certcard { background: var(--surface-card); box-shadow: var(--outline-ink); border-radius: var(--radius-md); padding: 26px 28px; text-align: center; min-width: 150px; flex: 1; }
.certcard .tick { color: var(--fb-accent); margin-bottom: 14px; }
.certcard .t { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.certcard .s { font-size: 12px; color: var(--text-tertiary); margin-top: 6px; }

/* ---------- CTA bands ---------- */
.ctaband { color: #fff; }
.ctaband--navy { background: var(--fb-navy); }
.ctaband--blue { background: var(--fb-accent); }
.ctaband .wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; padding-block: clamp(48px, 6vw, 80px); }
.ctaband h2 { color: #fff; max-width: 18ch; }
.ctaband p { margin-top: 16px; color: rgba(255,255,255,0.78); max-width: 46ch; font-size: 16px; }
.ctaband .actions { display: flex; gap: 14px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }

/* ---------- Lead form (navy) ---------- */
.lead { background: var(--fb-navy); color: #fff; }
.lead .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 80px); padding-block: clamp(56px, 7vw, 88px); align-items: start; }
.lead .eyebrow { color: var(--fb-blue-300); }
.lead h2 { color: #fff; margin: 16px 0 0; max-width: 16ch; }
.lead .lead-intro { margin-top: 18px; color: rgba(255,255,255,0.74); max-width: 40ch; font-size: 16px; line-height: 1.5; }
.lead .lead-contact { margin-top: 30px; display: flex; flex-direction: column; gap: 8px; }
.lead .lead-contact a { color: var(--fb-blue-300); text-decoration: none; font-size: 16px; width: max-content; }
.lead .lead-contact a:hover { color: #fff; }
.lead-form { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 34px); }
.lead-form .form-title { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 22px; }
.lead-form .fi { margin-bottom: 16px; }
.lead-form .fi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--fb-blue-300); margin-bottom: 8px; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md); padding: 13px 15px; color: #fff; font-family: inherit; font-size: 15px;
  letter-spacing: -0.01em; outline: none; transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard);
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.lead-form select { color: rgba(255,255,255,0.6); appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238fb2ec' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--fb-accent); background: rgba(255,255,255,0.09); }
.lead-form textarea { resize: vertical; min-height: 96px; }
.lead-form .fbtn { width: 100%; margin-top: 6px; }
.lead-form .fbtn__label { flex: 1; justify-content: center; }
.lead-form .note { margin: 14px 0 0; font-size: 12px; color: rgba(255,255,255,0.5); }

/* ---------- Contact light form (blueprint outline) ---------- */
.cwrap { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.cform .fi { margin-bottom: 16px; }
.cform .fi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform input, .cform select, .cform textarea {
  width: 100%; background: var(--surface-card); border: 0; box-shadow: inset 0 0 0 1px var(--text-primary);
  border-radius: var(--radius-md); padding: 16px 18px; font-family: inherit; font-size: 16px; letter-spacing: -0.01em;
  color: var(--text-primary); outline: none; transition: box-shadow var(--dur-base) var(--ease-standard);
}
.cform input::placeholder, .cform textarea::placeholder { color: var(--fb-grey-500); }
.cform input:focus, .cform select:focus, .cform textarea:focus { box-shadow: inset 0 0 0 2px var(--fb-accent); }
.cform textarea { resize: vertical; min-height: 130px; }
.cform .fbtn { margin-top: 8px; }
.cside .csec { padding: 22px 0; border-top: 1px solid var(--fb-ink-08); }
.cside .csec:first-child { border-top: 0; padding-top: 0; }
.cside h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.cside p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.5; }
.cside a { color: var(--text-secondary); text-decoration: none; }
.cside a:hover { color: var(--fb-accent); }

/* ---------- About: photo strip (4-up) ---------- */
.photostrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--surface-canvas); }
.photostrip .ph { aspect-ratio: 3 / 3.4; }

/* ---------- About: growth stats ---------- */
.gstats { display: flex; flex-direction: column; }
.gstat { display: grid; grid-template-columns: minmax(120px, auto) 1fr; gap: 28px; align-items: baseline; padding: 24px 0; border-top: 1px solid var(--fb-ink-50); }
.gstat:last-child { border-bottom: 1px solid var(--fb-ink-50); }
.gstat .v { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em; color: var(--fb-accent); line-height: 1; }
.gstat .t { font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.gstat .d { color: var(--text-secondary); font-size: 15px; line-height: 1.45; margin-top: 5px; }

/* ---------- Process steps (Charter) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--fb-ink-50); border: 1px solid var(--fb-ink-50); }
.step { padding: clamp(24px, 3vw, 36px); position: relative; background: var(--surface-canvas); }
.step .num { display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--fb-accent); margin-bottom: clamp(28px, 4vw, 44px); }
.step h3 { margin: 0 0 10px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--text-secondary); font-size: 16px; line-height: 1.5; }
.step .when { display: inline-block; margin-top: 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fb-accent); white-space: nowrap; }
@media (max-width: 1080px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .phero { grid-template-columns: 1fr; }
  .phero-copy { padding: clamp(40px,7vw,72px) var(--page-gutter); max-width: none; }
  .phero-media { min-height: 300px; }
  .svc-cards { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .why-head { position: static; }
  .stats .wrap { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.12); }
  .fleetcard .body { grid-template-columns: 1fr; }
  .operate-cols { grid-template-columns: 1fr; }
  .lead .wrap, .ctaband .wrap, .cwrap { grid-template-columns: 1fr; }
  .ctaband .actions { justify-content: flex-start; }
  .photostrip { grid-template-columns: repeat(2, 1fr); }
  .gstat { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 640px) {
  .stats .wrap { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .stat:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
  .lead-form .fi-row, .cform .fi-row { grid-template-columns: 1fr; }
  .lead-form input, .lead-form select, .lead-form textarea { font-size: 16px; }
  .photostrip { grid-template-columns: 1fr; }
  .photostrip .ph { aspect-ratio: 3 / 2; }
  .expand .eis { text-align: left; }
  .fleetcard .photo { aspect-ratio: 16 / 10; }
  .fleetcard .photo .nameplate { padding: 10px 16px; }
  .phero-media { min-height: 240px; }
  .fhero--left .crumb { margin-bottom: 64px; }
  .why-item { grid-template-columns: 40px 1fr; gap: 16px; }
}

/* ---------- Legal / policy pages ---------- */
.legal { max-width: 720px; }
.legal .updated { font-size: 13px; color: var(--text-tertiary); margin-top: 14px; }
.legal h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--text-secondary); font-size: 16px; line-height: 1.6; margin: 0 0 10px; }
.legal ul { margin: 0 0 10px; padding-left: 20px; }
