/* ==========================================================================
   wally-air.css
   Scoped styles for the Wally Air format page.
   Everything is namespaced under .wallyair-page so it can never leak into
   or be overridden by styles.css, regardless of <link> order.
   ========================================================================== */

.wallyair-page {
  --red: #e60012;
  --ink: #08070a;
  --paper: #08070a;
  --surface: #100f13;
  background: var(--ink) !important;
  color: #fff !important;
}

.wallyair-page .footer { margin-top: 0; }

/* ============ FINAL CTA (photo bg + overlaid form, matching Arrival) ============ */
.wallyair-page .final-cta { padding: 56px 16px; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background-color: #08070a; background-size: cover; background-position: center; }
.wallyair-page .final-cta-grid { position: relative; width: 100%; display: grid; grid-template-columns: minmax(0, 1fr) min(520px, 42%); gap: 64px; align-items: start; text-align: left; }
.wallyair-page .final-cta .fc-head { font-size: clamp(38px, 6.2vw, 92px); line-height: 1.0; color: #fff; }
.wallyair-page .final-cta .fc-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 28px; color: #fff; opacity: 0.85; }
.wallyair-page .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,0.55); border-bottom: none; }
.wallyair-page .f-input { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.55); color: #fff; padding: 20px 18px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; width: 100%; transition: background 0.25s; text-shadow: 0 1px 4px rgba(0,0,0,0.8); }
.wallyair-page .f-input.f-col-left { border-right: 1px solid rgba(255,255,255,0.55); }
.wallyair-page .f-input:focus { outline: none; background: #0d0c10; }
.wallyair-page .f-input::placeholder { color: #fff; opacity: 0.9; }
.wallyair-page .f-input.full { grid-column: 1 / -1; }
.wallyair-page textarea.f-input { min-height: 140px; resize: vertical; }
.wallyair-page .form-send { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.wallyair-page .form-send .ff-note { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; padding-left: 18px; flex: 1; min-width: 0; color: #fff; }
.wallyair-page .form-send .btn-red { padding: 14px 24px; flex-shrink: 0; }
.wallyair-page .form-send .btn-red:hover { transform: none; }

@media (max-width: 900px) {
  .wallyair-page .final-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .wallyair-page .form-grid { grid-template-columns: 1fr; }
  .wallyair-page .f-input.f-col-left { border-right: none; }
  .wallyair-page .form-send { flex-direction: column; align-items: stretch; gap: 0; }
  .wallyair-page .form-send .ff-note { padding: 14px 18px; }
}

/* ---- hover motion: image zoom, matching site convention ---- */
.wallyair-page .img-placeholder img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}
.wallyair-page .img-placeholder:hover img,
.wallyair-page .img-placeholder:hover {
  transform: scale(1.02);
}
.wallyair-page .flight-gallery .img-placeholder {
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.3, 1);
}
.wallyair-page .flight-gallery .img-placeholder:hover {
  transform: translateY(-6px);
}
.wallyair-page .air-spec-list {
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.wallyair-page .air-spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  align-items: baseline;
}
.wallyair-page .air-spec-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.wallyair-page .air-spec-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 640px;
  color: #000;
}
@media (max-width: 700px) {
  .wallyair-page .air-spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.wallyair-page .flight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---- moment cards (packed stadium / festival crowd / etc.) ---- */
.wallyair-page .moment-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.wallyair-page .moment-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.wallyair-page .moment-card .mc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: var(--red);
  font-weight: 700;
}
.wallyair-page .moment-card h3 {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  word-spacing: 0.1em;
  margin-top: 16px;
}
