/* The purchase journey ------------------------------------------------------
 *
 * Lives inside the product scroll: the sticky rail walks Reserve -> Unlock ->
 * Operate, and each act is one windowed plate with a single focal element.
 * Act 01 is the flagged Project card - state and project-type chips, the 494
 * Parcels as app-style squares, the sample unlock quote beside Reserve - with
 * the window strip and the you-make fee slider (journey.js). Act 02 is the
 * firm's own desk: crest in the chrome, Parcel list as the nav, the real
 * 494-parcel plan view (offer.js), and the selected Parcel's full record.
 * Act 03 is the worked set: every Parcel a square colored by who is working
 * it, the collaboration case beside it, and our part demoted to a one-line
 * footnote. Paper plates on the night section; act 02 stays night so the
 * survey ribbon reads like the corridor model above it.
 */

/* Windowed plate frame */

.journey-plate {
  overflow: hidden;
  color: var(--ink);
  background: rgba(252, 251, 246, 0.97);
  border: 1px solid rgba(154, 159, 145, 0.4);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.journey-plate.is-night {
  color: var(--inverse);
  background: #0b1f1c;
  border-color: rgba(239, 233, 218, 0.16);
}

.journey-chrome {
  display: flex;
  height: 40px;
  padding: 0 16px;
  align-items: center;
  gap: 7px;
  background: #14302b;
  border-bottom: 1px solid rgba(239, 233, 218, 0.12);
}

.journey-chrome span {
  width: 6px;
  height: 6px;
  background: rgba(233, 232, 224, 0.25);
  border-radius: 50%;
}

.journey-chrome b {
  margin-left: 8px;
  color: rgba(233, 232, 224, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-chrome i {
  margin-left: auto;
  color: #d8b14f;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: right;
}

/* ------------------------------------------------------ Act 01 - reserve */

.journey-reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

/* The flagged Project - the one thing act 01 is about. */

.journey-project-card {
  display: flex;
  padding: clamp(24px, 3vw, 40px);
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.journey-status {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  background: rgba(216, 177, 79, 0.14);
  border: 1px solid rgba(181, 138, 42, 0.45);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-status i {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(181, 138, 42, 0.18);
}

.journey-project-card h4 {
  margin-top: 18px;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.journey-project-meta {
  margin-top: 10px;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.journey-project-count {
  display: flex;
  margin-top: clamp(22px, 2.6vw, 38px);
  align-items: center;
  gap: 16px;
}

.journey-project-count b {
  color: var(--ink);
  font-size: clamp(64px, 6vw, 96px);
  font-weight: 275;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.journey-project-count span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.journey-project-facts {
  margin-top: auto;
  padding-top: clamp(20px, 2.4vw, 34px);
}

.journey-project-facts li {
  display: flex;
  padding: 11px 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.journey-project-facts span {
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-project-facts b {
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* The right column: what the window is, what the fees could be, the move. */

.journey-reserve-side {
  display: flex;
  padding: clamp(24px, 3vw, 40px);
  flex-direction: column;
  gap: clamp(20px, 2.2vw, 30px);
  background: var(--paper);
}


.journey-window-strip ol {
  display: grid;
  margin-top: 12px;
  grid-template-columns: repeat(4, 1fr);
}

.journey-window-strip li {
  padding: 12px 12px 14px;
  border: 1px solid var(--line);
  border-right: 0;
}

.journey-window-strip li:last-child {
  border-right: 1px solid var(--line);
}

.journey-window-strip li small {
  display: block;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.journey-window-strip li b {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.25;
}

.journey-window-strip li.in-window {
  background: rgba(216, 177, 79, 0.13);
  border-color: rgba(181, 138, 42, 0.5);
}

.journey-window-strip li.in-window + li.in-window {
  border-left-color: rgba(181, 138, 42, 0.28);
}

.journey-window-strip li.in-window small {
  color: var(--gold-dark);
}

/* ------------------------------------------------------- Act 02 - unlock */

.journey-unlock-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(239, 233, 218, 0.12);
}

.journey-unlock-facts > div {
  display: flex;
  padding: 14px clamp(16px, 2vw, 26px);
  align-items: baseline;
  gap: 10px;
  border-right: 1px solid rgba(239, 233, 218, 0.12);
}

.journey-unlock-facts > div:last-child {
  border-right: 0;
}

.journey-unlock-facts b {
  color: #f0d489;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.journey-unlock-facts span {
  color: rgba(239, 233, 218, 0.6);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Plan-view stage: offer.js renders the 494 CAD footprints in here. */

.oj-stage {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 2vw, 26px) clamp(16px, 2vw, 26px) 0;
  flex-direction: column;
}

.oj-stage-scroll {
  overflow-x: auto;
  background:
    radial-gradient(circle at 50% 42%, rgba(101, 158, 130, 0.1), transparent 58%),
    rgba(3, 14, 12, 0.55);
  border: 1px solid rgba(239, 233, 218, 0.13);
}

.oj-stage-scroll:focus-visible {
  outline: 3px solid rgba(216, 177, 79, 0.72);
  outline-offset: 3px;
}

.oj-stage-canvas {
  position: relative;
  min-height: 220px;
}

.oj-stage-canvas.is-rendered {
  min-height: 0;
}

.oj-stage-canvas svg {
  display: block;
  width: 100%;
  height: auto;
}

.oj-stage-wait {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 20px;
  place-content: center;
  color: rgba(239, 233, 218, 0.4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.oj-stage-canvas.is-rendered .oj-stage-wait {
  display: none;
}

.oj-stage-canvas .ojp {
  opacity: 0;
  transition: opacity 640ms ease;
}

.oj-stage-canvas.is-live .ojp {
  opacity: 1;
}

.oj-stage-hud {
  display: flex;
  margin-top: 13px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.oj-stage-hud strong {
  color: #efe9da;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.oj-stage-swipe {
  display: none;
  color: rgba(239, 233, 218, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oj-stage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: rgba(239, 233, 218, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.oj-stage-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.oj-stage-legend i {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: #d8b14f;
}

.oj-stage-legend .is-parcel {
  height: 9px;
  background: rgba(216, 177, 79, 0.2);
  border: 1px solid rgba(232, 200, 111, 0.6);
}

.oj-stage-legend .is-mark {
  width: 10px;
  height: 10px;
  background: #e4c063;
  border-radius: 50%;
}

/* ------------------------------------------------------ Act 03 - operate */

/* Counsel gate, closing the section. */

.journey-counsel {
  display: grid;
  margin-top: clamp(48px, 5vw, 76px);
  padding-top: 22px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px 34px;
  border-top: 1px solid rgba(233, 232, 224, 0.16);
}

.journey-counsel > span {
  color: #d8b14f;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-counsel p {
  max-width: 1020px;
  color: rgba(233, 232, 224, 0.6);
  font-size: 12.5px;
  line-height: 1.65;
}

.journey-counsel strong {
  color: rgba(233, 232, 224, 0.88);
  font-weight: 600;
}

/* ------------------------------------------------------------- Responsive */

@media (max-width: 1080px) {


}

@media (max-width: 760px) {
  .journey-window-strip ol {
    grid-template-columns: 1fr 1fr;
  }

  .journey-window-strip li {
    border-right: 1px solid var(--line);
    border-top: 0;
  }

  .journey-window-strip li:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .journey-window-strip li.in-window {
    border-color: rgba(181, 138, 42, 0.5);
  }


  .journey-unlock-facts {
    grid-template-columns: 1fr;
  }

  .journey-unlock-facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(239, 233, 218, 0.12);
  }

  .journey-unlock-facts > div:last-child {
    border-bottom: 0;
  }


  .oj-stage-swipe {
    display: inline;
  }

  .oj-stage-canvas svg {
    width: 920px;
    max-width: none;
  }


  .journey-counsel {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oj-stage-canvas .ojp {
    opacity: 1;
    transition: none !important;
    transition-delay: 0ms !important;
  }
}

/* Act 01 additions: card head chips, squares, unlock quote + reserve, slider,
   next-card tease. */

.journey-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-type,
.journey-state {
  display: inline-flex;
  padding: 6px 11px;
  align-items: center;
  gap: 7px;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-type svg {
  width: 14px;
  height: 14px;
  color: var(--gold-dark);
}

.journey-state img {
  width: 15px;
  height: 15px;
  display: block;
}

.journey-squares {
  display: grid;
  grid-template-columns: repeat(var(--sq-cols, 26), 1fr);
  gap: 2px;
  width: 100%;
}

.journey-squares i {
  aspect-ratio: 1;
  background: rgba(26, 54, 54, 0.1);
  border-radius: 1px;
}

.journey-squares .is-tinted {
  background: rgba(26, 54, 54, 0.18);
}

.journey-squares .is-gold {
  background: var(--gold);
}

.journey-squares .is-gold-soft {
  background: rgba(181, 138, 42, 0.45);
}

.journey-project-count {
  align-items: flex-start;
}

.journey-project-count .journey-squares {
  flex: 1;
  min-width: 0;
  margin-top: 6px;
}

.journey-reserve-row {
  display: flex;
  margin-top: clamp(18px, 2vw, 26px);
  align-items: stretch;
  gap: 14px;
}

.journey-unlock-quote {
  display: grid;
  flex: 1;
  padding: 10px 16px;
  align-content: center;
  gap: 2px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.journey-unlock-quote small {
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-unlock-quote b {
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.journey-unlock-quote em {
  color: var(--subtle);
  font-size: 10px;
  font-style: normal;
}

.journey-reserve-btn {
  display: grid;
  min-width: 148px;
  place-content: center;
  color: #10231f;
  background: #e4c063;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.journey-reserve-note {
  margin-top: 10px;
  color: var(--subtle);
  font-size: 10.5px;
  line-height: 1.5;
}

/* The slider: you make $X if you close N. */

.journey-slider > p:first-child,
.journey-window-strip > p {
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-slider-readout {
  display: flex;
  margin-top: 12px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 18px;
}

.journey-slider-readout > span {
  font-size: 14px;
}

.journey-slider-readout > span b {
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.journey-slider-readout strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.journey-slider-readout strong b {
  color: var(--gold-dark);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.journey-slider input[type="range"] {
  width: 100%;
  height: 26px;
  margin-top: 8px;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.journey-slider input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b58a2a var(--fill, 30%), rgba(26, 54, 54, 0.12) var(--fill, 30%));
}

.journey-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -6px;
  background: #fff;
  border: 3px solid #b58a2a;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(24, 51, 45, 0.3);
}

.journey-slider input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b58a2a var(--fill, 30%), rgba(26, 54, 54, 0.12) var(--fill, 30%));
}

.journey-slider input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 3px solid #b58a2a;
  border-radius: 50%;
}

.journey-slider-scale {
  position: relative;
  height: 16px;
  margin-top: 2px;
}

.journey-slider-scale span {
  position: absolute;
  left: var(--at, 0%);
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-slider-scale span.is-model {
  color: var(--gold-dark);
}

.journey-slider-basis {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

.journey-slider-basis b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Tease of the next act. */

.journey-next-tease {
  display: grid;
  margin-top: auto;
  padding: 14px 16px;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
  color: var(--inverse);
  background: var(--night);
  border: 1px solid rgba(239, 233, 218, 0.14);
  text-decoration: none;
  transition: border-color 200ms ease;
}

.journey-next-tease:hover {
  border-color: rgba(216, 177, 79, 0.6);
}

.journey-tease-visual {
  position: relative;
  height: 52px;
  overflow: hidden;
  background: #0b1f1c;
  border: 1px solid rgba(239, 233, 218, 0.16);
}

.journey-tease-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  background: #14302b;
}

.journey-tease-route {
  position: absolute;
  left: -4%;
  right: -4%;
  top: 58%;
  height: 3px;
  background: #d8b14f;
  border-radius: 2px;
  transform: rotate(-7deg);
  box-shadow: 0 0 10px rgba(216, 177, 79, 0.75), 0 14px 0 -6px rgba(216, 177, 79, 0.28), 0 -12px 0 -7px rgba(216, 177, 79, 0.28);
}

.journey-tease-copy small {
  display: block;
  color: #d8b14f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-tease-copy b {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  font-weight: 500;
}

/* Act 02 additions: the firm's desk. */

.journey-chrome.is-firm b {
  color: rgba(240, 234, 219, 0.85);
}

.journey-firm-logo {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-content: center;
  color: #e4c063;
  border: 1px solid rgba(216, 177, 79, 0.5);
  border-radius: 3px;
}

.journey-firm-logo svg {
  width: 16px;
  height: 16px;
}

.journey-desk {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 2fr);
}

.journey-desk-nav {
  padding: clamp(16px, 2vw, 24px) 0 clamp(16px, 2vw, 24px) clamp(16px, 2vw, 26px);
  border-right: 1px solid rgba(239, 233, 218, 0.12);
}

.journey-desk-nav > p {
  padding-right: 16px;
  color: rgba(239, 233, 218, 0.55);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-desk-nav ul {
  display: grid;
  margin-top: 12px;
}

.journey-desk-nav li {
  display: grid;
  padding: 10px 14px 10px 0;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(239, 233, 218, 0.08);
}

.journey-desk-nav li > i {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-content: center;
  color: #10231f;
  background: rgba(239, 233, 218, 0.25);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
}

.journey-desk-nav li.is-selected {
  margin-left: -10px;
  padding-left: 10px;
  background: rgba(216, 177, 79, 0.14);
  border-top-color: rgba(216, 177, 79, 0.4);
}

.journey-desk-nav li.is-selected > i {
  background: #e4c063;
}

.journey-desk-nav li b {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.journey-desk-nav li small {
  display: block;
  overflow: hidden;
  color: rgba(239, 233, 218, 0.5);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.journey-desk-nav li > span {
  color: rgba(239, 233, 218, 0.6);
  font-family: var(--font-mono);
  font-size: 9.5px;
  white-space: nowrap;
}

.journey-desk-nav .journey-desk-more {
  grid-template-columns: 1fr;
  color: rgba(239, 233, 218, 0.6);
}

.journey-desk-main {
  min-width: 0;
}

.journey-desk-main .oj-stage {
  padding-bottom: 0;
}

.journey-parcel-detail {
  margin: clamp(14px, 1.8vw, 22px) clamp(16px, 2vw, 26px) clamp(16px, 2vw, 26px);
  padding: clamp(14px, 1.8vw, 20px);
  background: rgba(216, 177, 79, 0.07);
  border: 1px solid rgba(216, 177, 79, 0.4);
}

.journey-parcel-detail header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.journey-parcel-detail header b {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.journey-parcel-detail header small {
  display: block;
  color: rgba(239, 233, 218, 0.55);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-parcel-detail header strong {
  margin-left: auto;
  color: #f0d489;
  font-family: var(--font-mono);
  font-size: 12px;
}

.journey-parcel-detail dl {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 22px;
}

.journey-parcel-detail dt {
  color: rgba(239, 233, 218, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.journey-parcel-detail dd {
  margin-top: 3px;
  font-size: 12.5px;
  line-height: 1.4;
}

.journey-parcel-detail footer {
  margin-top: 14px;
  padding-top: 11px;
  color: rgba(239, 233, 218, 0.5);
  border-top: 1px solid rgba(239, 233, 218, 0.12);
  font-size: 10.5px;
}

.journey-mark {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-content: center;
  align-self: center;
  color: #10231f;
  background: #e4c063;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
}

/* Act 03: the worked set + collaboration. */

.journey-operate {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.journey-allocation {
  padding: clamp(20px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
}

.journey-allocation > p,
.journey-collab > p {
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.journey-squares.is-large {
  margin-top: 14px;
  gap: 3px;
}

.journey-squares.is-large i {
  border-radius: 1.5px;
}

.journey-squares .is-corridor {
  background: rgba(181, 138, 42, 0.24);
}

.journey-squares .is-mine {
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(125, 90, 18, 0.5);
}

.journey-squares .is-partner {
  background: #668e7a;
}

.journey-squares .is-watched {
  background: transparent;
  box-shadow: inset 0 0 0 1.6px rgba(26, 54, 54, 0.55);
}

.journey-allocation-key {
  display: grid;
  margin-top: 18px;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.journey-allocation-key li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.journey-allocation-key i {
  width: 12px;
  height: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 2px;
}

.journey-allocation-key .is-mine i { background: var(--gold); }
.journey-allocation-key .is-partner i { background: #668e7a; }
.journey-allocation-key .is-watched i { background: transparent; box-shadow: inset 0 0 0 1.6px rgba(26, 54, 54, 0.55); }
.journey-allocation-key .is-open i { background: rgba(26, 54, 54, 0.1); }

.journey-allocation-key b {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
}

.journey-allocation-key small {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
}

.journey-collab {
  display: flex;
  padding: clamp(20px, 2.6vw, 34px);
  flex-direction: column;
  background: var(--paper);
}

.journey-collab ul {
  display: grid;
  margin-top: 14px;
  gap: 14px;
}

.journey-collab li b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.journey-collab li span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.journey-lanes-row {
  display: grid;
  margin-top: auto;
  padding-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.journey-lanes-row > span {
  padding: 10px 12px;
  background: rgba(252, 251, 246, 0.9);
  border: 1px solid var(--line);
}

.journey-lanes-row b {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
}

.journey-lanes-row small {
  display: block;
  margin-top: 2px;
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-our-part {
  display: flex;
  padding: 13px clamp(20px, 2.6vw, 34px);
  align-items: baseline;
  gap: 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.journey-our-part span {
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.journey-our-part p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .journey-desk,
  .journey-operate {
    grid-template-columns: 1fr;
  }

  .journey-desk-nav {
    padding-right: clamp(16px, 2vw, 26px);
    border-right: 0;
    border-bottom: 1px solid rgba(239, 233, 218, 0.12);
  }

  .journey-allocation {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .journey-reserve-row {
    flex-direction: column;
  }

  .journey-reserve-btn {
    min-height: 48px;
  }

  .journey-parcel-detail dl {
    grid-template-columns: 1fr;
  }

  .journey-allocation-key {
    grid-template-columns: 1fr;
  }

  .journey-lanes-row {
    grid-template-columns: 1fr;
  }

  .journey-next-tease {
    grid-template-columns: 1fr;
  }
}
