/* learning-journey.css — Learning Journey and Solution Design page */
@import url("leadership-acceleration.css");

/* Approach grid (3 principles) */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.approach-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--avion-blue);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  transition: transform 280ms var(--ease-standard), box-shadow 280ms var(--ease-standard);
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,46,130,0.08);
}
.approach-card .principle-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--avion-sky-1);
  margin-bottom: 14px;
}
.approach-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 20px; line-height: 1.25;
  color: var(--avion-navy);
  margin: 0 0 14px;
}
.approach-card p {
  margin: 0;
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
}

/* Journey Map — winding road */
.journey-section {
  background: linear-gradient(180deg, var(--paper-tint) 0%, #fff 100%);
  padding: clamp(80px, 10vw, 128px) 0;
  overflow: hidden;
  position: relative;
}
.journey-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}
.journey-head h2 { text-align: center; }
.journey-head .lede {
  font-size: 17px;
  margin-top: 18px;
}

.journey-map {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.journey-road {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.journey-road path.road-bg {
  fill: none;
  stroke: var(--avion-sky-2);
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.55;
}
.journey-road path.road-line {
  fill: none;
  stroke: var(--avion-blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 2 10;
  opacity: 0.85;
}
.journey-road path.road-edge {
  fill: none;
  stroke: var(--avion-navy);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.4;
}

.journey-stops {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.journey-stop {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 120px;
  padding: 12px 0;
}
.journey-stop .stop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(45,46,130,0.06);
  position: relative;
  max-width: 320px;
}
.journey-stop.is-left  .stop-card { grid-column: 1; justify-self: end; text-align: right; }
.journey-stop.is-right .stop-card { grid-column: 3; justify-self: start; text-align: left; }
.journey-stop.is-left  .stop-empty,
.journey-stop.is-right .stop-empty { content: ""; }
.journey-stop.is-left  .stop-empty { grid-column: 3; }
.journey-stop.is-right .stop-empty { grid-column: 1; }

.journey-stop .stop-node {
  grid-column: 2;
  justify-self: center;
  position: relative;
  width: 84px; height: 84px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--avion-navy) 0%, var(--avion-blue) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(45,46,130,0.32), 0 0 0 6px #fff, 0 0 0 8px var(--avion-sky-3);
  transition: transform 280ms var(--ease-standard);
}
.journey-stop.is-alt .stop-node {
  background: linear-gradient(135deg, var(--avion-blue) 0%, var(--avion-teal) 100%);
  box-shadow: 0 12px 28px rgba(29,112,183,0.32), 0 0 0 6px #fff, 0 0 0 8px var(--avion-sky-3);
}
.journey-stop:hover .stop-node { transform: scale(1.08); }
.journey-stop .stop-node svg { width: 36px; height: 36px; }
.journey-stop .stop-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #fde047;
  color: var(--avion-navy);
  font-family: var(--font-display); font-weight: 900; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.journey-stop .stop-name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; line-height: 1.25;
  color: var(--avion-navy);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.journey-stop .stop-desc {
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* Start / finish markers */
.journey-marker {
  text-align: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--avion-blue);
  display: inline-flex; align-items: center; gap: 10px;
}
.journey-start, .journey-finish {
  text-align: center;
  margin: 24px 0;
}
.journey-marker::before, .journey-marker::after {
  content: ""; width: 32px; height: 1px; background: var(--avion-blue);
}

/* Quote callout */
.quote-callout {
  background: linear-gradient(135deg, var(--avion-navy) 0%, var(--avion-blue) 60%, var(--avion-teal) 100%);
  color: #fff;
  border-radius: 8px;
  padding: clamp(40px, 5vw, 56px);
  margin-top: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-callout::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(253,224,71,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(134,203,236,0.18), transparent 55%);
  pointer-events: none;
}
.quote-callout .qm {
  font-family: var(--font-serif);
  font-size: 80px; color: #fde047;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}
.quote-callout p {
  margin: 0; position: relative;
  font-family: var(--font-serif);
  font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  max-width: 760px; margin: 0 auto;
  color: #fff;
}

/* Related */
.related-grid--3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}

/* Responsive */
@media (max-width: 880px) {
  .approach-grid { grid-template-columns: 1fr; gap: 16px; }
  .journey-road { display: none; }
  .journey-stop {
    grid-template-columns: 72px 1fr;
    gap: 16px;
    padding: 16px 0;
    align-items: flex-start;
  }
  .journey-stop .stop-node {
    grid-column: 1;
    width: 64px; height: 64px;
    box-shadow: 0 8px 20px rgba(45,46,130,0.25), 0 0 0 4px #fff, 0 0 0 5px var(--avion-sky-3);
  }
  .journey-stop .stop-node svg { width: 28px; height: 28px; }
  .journey-stop.is-left .stop-card,
  .journey-stop.is-right .stop-card {
    grid-column: 2; justify-self: stretch; text-align: left; max-width: none;
  }
  .journey-stop .stop-empty { display: none; }
  .related-grid--3 { grid-template-columns: 1fr; }
}
