/* ==========================================================================
   pilot.css — section #pilot (navy) · Alfred landing port, part 5/6
   Layout/visuals from prototype Alfred.dc.html §Pilot: 3 line-art chairs with
   Prosto/Zasedeno states, H2 (max 18ch), 4 border-top benefits, brass CTA.
   Depends on css/variables.css + css/base.css (.wrap, .eyebrow, .btn, .cta-row,
   .micro, .on-navy).
   ========================================================================== */

.pilot { --illo-sw: 1.8; }

.pilot .eyebrow { margin-bottom: 20px; }

/* --- 3 pilot seats --- */
.pilot-seats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pilot-seat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(184, 147, 90, 0.4);
  border-radius: var(--radius);
  padding: 14px 22px;
  color: rgba(244, 237, 224, 0.75);
}
/* Zasedeno state — flip by hand on confirmed reservation (real counter) */
.pilot-seat.is-taken {
  border-color: var(--brass);
  color: var(--brass);
  background: rgba(184, 147, 90, 0.12);
}
.pilot-seat svg {
  stroke: currentColor;
  stroke-width: var(--illo-sw);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pilot-seat span {
  font: 600 11px var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- heading + intro --- */
.pilot h2 {
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  max-width: 18ch;
}
.pilot-lead {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.82);
  max-width: 56ch;
}

/* --- 4 benefits --- */
.pilot-benefits {
  list-style: none;
  margin: clamp(36px, 4.5vw, 52px) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.pilot-benefits li {
  border-top: 1px solid rgba(184, 147, 90, 0.4);
  padding-top: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.85);
}

/* --- micro under CTA --- */
.pilot-micro {
  color: var(--cream-soft);
  margin-top: var(--space-2);
  opacity: 1;
}
