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

.pilot {
  --illo-sw: 1.8;
  padding-block: clamp(64px, 9vw, 120px);
}

.pilot .al-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);
}
/* Oddano state (is-taken) — REAL counter, flip by hand on confirmed reservation */
/* oddano = prečrtano mesto (Marko 6.7.): zatemnjeno + diagonalna črta čez */
.pilot-seat.is-taken {
  position: relative;
  border-color: rgba(184, 147, 90, 0.22);
  color: rgba(244, 237, 224, 0.35);
  background: transparent;
}
.pilot-seat.is-taken::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top right,
    transparent calc(50% - 0.5px),
    rgba(184, 147, 90, 0.55) calc(50% - 0.5px),
    rgba(184, 147, 90, 0.55) calc(50% + 0.5px),
    transparent calc(50% + 0.5px));
}
.pilot-seat.is-taken span {
  text-decoration: line-through;
  text-decoration-color: rgba(184, 147, 90, 0.65);
  text-decoration-thickness: 1px;
}
.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 {
  font-size: var(--fs-micro);
  color: var(--cream-a75);
  margin-top: 1rem;
  max-width: 68ch;
}
