/* css/journey.css
 *
 * The journey pages: reserveren.php, mijn-verblijf.php, betalen.php. One
 * refined shell in the il Cigno brand -- warm background, mauve accent,
 * Libre Bodoni headings, functional micro-animations. These pages sit
 * outside the compiled site, so they carry their own layout and must NOT
 * use `.content-section` (opacity: 0 without GSAP, see GuestPage.php).
 */

.journey-body {
    background: var(--color-background, #f8f5f1);
    font-family: var(--font-primary, 'Nunito', sans-serif);
    color: var(--color-text-primary, #333);
    margin: 0;
}

.journey-page {
    max-width: 52rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4rem;
}

/* ------------------------------------------------------------------ *
 * Hero.
 * ------------------------------------------------------------------ */

.journey-hero { text-align: center; margin-bottom: 2.5rem; }

.journey-kicker {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7D727B;
    margin: 0 0 0.5rem;
}

.journey-hero h1 {
    font-family: var(--font-secondary, 'Libre Bodoni', serif);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 500;
    margin: 0 0 0.75rem;
}

.journey-lead {
    max-width: 34rem;
    margin: 0 auto;
    color: var(--color-text-secondary, #888);
}

/* ------------------------------------------------------------------ *
 * Panels: the cards each journey step lives in.
 * ------------------------------------------------------------------ */

.journey-panel {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 20px rgba(125, 114, 123, 0.10);
    animation: journey-rise 0.5s ease both;
}

@keyframes journey-rise {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

.journey-panel h2 {
    font-family: var(--font-secondary, 'Libre Bodoni', serif);
    font-weight: 500;
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
}

.journey-panel.is-confirmation { text-align: center; }

.journey-check {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: #7D727B;
    color: #FDFDED;
    font-size: 1.5rem;
    line-height: 3rem;
    animation: journey-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.15s;
}

@keyframes journey-pop {
    from { opacity: 0; transform: scale(0.4); }
    to   { opacity: 1; transform: scale(1); }
}

/* ------------------------------------------------------------------ *
 * Form.
 * ------------------------------------------------------------------ */

.journey-field { margin-bottom: 1.25rem; }

.journey-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.journey-row .journey-field { margin-bottom: 0.75rem; }

.journey-label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.journey-field input:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
.journey-field select,
.journey-field textarea {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(125, 114, 123, 0.3);
    border-radius: 10px;
    font: inherit;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.journey-field input:focus,
.journey-field textarea:focus {
    outline: none;
    border-color: #7D727B;
    box-shadow: 0 0 0 3px rgba(125, 114, 123, 0.15);
}

.journey-help {
    font-size: 0.85rem;
    color: var(--color-text-secondary, #888);
    margin: 0.35rem 0 1rem;
}

.journey-units {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 0.75rem;
}

.journey-unit {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    border: 1px solid rgba(125, 114, 123, 0.25);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.15s ease;
}

.journey-unit:hover { transform: translateY(-1px); border-color: #7D727B; }

.journey-unit:has(input:checked) {
    border-color: #7D727B;
    background: rgba(125, 114, 123, 0.07);
}

.journey-unit input { width: auto; flex: 0 0 auto; margin: 0.25rem 0 0; }
.journey-unit small { display: block; color: var(--color-text-secondary, #888); }

/* The persons slider: compact and quiet. A thin track whose filled part
 * follows the thumb (--fill set from JS), a small thumb, and the min/max as
 * quiet labels on either side. Deliberately not full width. */
/* Slider left, the indicative total right -- the tax moves with the slider,
 * so the number belongs beside the control that changes it. */
.journey-persons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.journey-persons-cost {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary, #888);
    line-height: 1.35;
}

.journey-persons-cost strong {
    display: block;
    font-size: 1rem;
    color: #4a4348;
}

.journey-persons-cost:empty { display: none; }

.journey-slider-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: 17rem;
    flex: 1 1 14rem;
}

.journey-slider-edge {
    font-size: 0.78rem;
    color: var(--color-text-secondary, #888);
    min-width: 0.9rem;
    text-align: center;
}

.journey-slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(to right,
        #7D727B var(--fill, 20%), rgba(125, 114, 123, 0.18) var(--fill, 20%));
    outline: none;
    margin: 0;
}

.journey-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #7D727B;
    box-shadow: 0 1px 4px rgba(125, 114, 123, 0.35);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.journey-slider::-webkit-slider-thumb:hover,
.journey-slider:focus-visible::-webkit-slider-thumb {
    transform: scale(1.15);
    box-shadow: 0 0 0 4px rgba(125, 114, 123, 0.15);
}

.journey-slider::-moz-range-thumb {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #7D727B;
    box-shadow: 0 1px 4px rgba(125, 114, 123, 0.35);
    cursor: pointer;
}

#persons-value {
    display: inline-block;
    min-width: 1.4rem;
    text-align: center;
    background: rgba(125, 114, 123, 0.12);
    color: #4a4348;
    border-radius: 999px;
    padding: 0.02rem 0.45rem;
    font-size: 0.85rem;
    margin-left: 0.25rem;
    font-variant-numeric: tabular-nums;
}

/* The tint swatch that ties a choice card to its calendar color. */
.journey-swatch {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 3px;
    margin-right: 0.45rem;
    vertical-align: baseline;
}

.journey-swatch.is-house  { background: #7D727B; }
.journey-swatch.is-studio { background: #97A97C; }
.journey-swatch.is-both   { background: linear-gradient(135deg, #7D727B 50%, #97A97C 50%); }

/* A choice the picked period cannot fulfil: visibly out of the running. */
.journey-unit.is-unavailable {
    opacity: 0.45;
    cursor: not-allowed;
    background: transparent;
}

.journey-unit.is-unavailable:hover { transform: none; border-color: rgba(125, 114, 123, 0.25); }

.journey-availability { min-height: 1.1em; }

.journey-unit:not(.is-unavailable) .journey-availability:not(:empty) { color: #5a7a4e; }
.journey-unit.is-unavailable .journey-availability { color: #a05252; }

.journey-cost {
    font-size: 0.9rem;
    color: #4a4348;
    background: rgba(125, 114, 123, 0.08);
    border-radius: 10px;
    padding: 0.6rem 0.9rem;
    margin: 0.9rem 0 0;
    min-height: 1.2em;
    transition: opacity 0.25s ease;
}

.journey-cost:empty { display: none; }

.journey-button {
    font: inherit;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border: none;
    border-radius: 999px;
    background: #7D727B;
    color: #FDFDED;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.25s ease;
}

.journey-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(125, 114, 123, 0.4);
    background: #6a616a;
}

/* ------------------------------------------------------------------ *
 * Notices, honeypot, footer link.
 * ------------------------------------------------------------------ */

.journey-notice {
    border-left: 4px solid currentColor;
    border-radius: 0 10px 10px 0;
    background: #fff;
    padding: 0.9rem 1.2rem;
    margin-bottom: 1.5rem;
}

.journey-notice.is-bad  { color: #a05252; }
.journey-notice.is-good { color: #2e6b34; }
.journey-notice p { margin: 0; color: inherit; }

/* Off-screen, not display:none -- some bots skip invisible fields. */
.journey-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.journey-back { text-align: center; margin-top: 2rem; }

.journey-back a {
    color: #7D727B;
    text-decoration: none;
    border-bottom: 1px solid rgba(125, 114, 123, 0.35);
    transition: border-color 0.25s ease;
}

.journey-back a:hover { border-color: #7D727B; }

/* ------------------------------------------------------------------ *
 * Cost breakdown.
 * ------------------------------------------------------------------ */

/* Every costs table shares the instalment cards' geometry: same side inset
 * (their padding + border), and every amount ends 8rem before that edge --
 * one right edge for every decimal on the page (Jeroen, twice, 2026-08-18). */
.journey-costs {
    width: calc(100% - 2rem - 2px);
    border-collapse: collapse;
    margin: 0.5rem calc(1rem + 1px) 0.75rem;
}

.journey-costs th,
.journey-costs td {
    text-align: left;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(125, 114, 123, 0.15);
    font-weight: 400;
}

.journey-costs-detail { color: var(--color-text-secondary, #888); font-size: 0.88rem; }

/* Per-apartment subheading inside a combined booking's costs and guest
 * sections -- the invoice level is where the apartments stay visibly apart. */
.journey-costs-unit {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 1.05rem;
    margin: 1.4rem calc(1rem + 1px) 0.2rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--color-text, #3e383c);
}

/* `td.` is load-bearing: `.journey-costs td` (0,1,1) out-specifies a bare
 * class (0,1,0), so the old `.journey-costs-amount { text-align: right }`
 * silently LOST and every amount sat left-aligned in its column -- the
 * "decimalen niet onder elkaar" Jeroen reported twice (2026-08-18). */
td.journey-costs-amount {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* No action column in the plain costs tables; the inset stands in for it,
 * so their amounts end on the same page-wide edge as the compact table's. */
.journey-costs:not(.is-compact) td.journey-costs-amount { padding-right: 8rem; }

/* A summary table without a header row (paid / outstanding). It mirrors the
 * geometry of the instalment cards above it -- same side inset (their padding
 * plus border), same phantom action column -- so every amount truly ends on
 * one right edge and the decimals sit under each other (Jeroen, 2026-08-18:
 * they did not; the old claim of "one right edge" ignored both offsets). */
.journey-costs.is-compact {
    /* `table-layout: fixed` because the auto algorithm hands the leftover
     * width to whichever column it likes, which parked the amounts
     * mid-table (seen 2026-08-18). Width/margins come from .journey-costs. */
    margin-bottom: 1rem;
    table-layout: fixed;
}

/* Fixed layout takes column widths from the first row: label stretches,
 * amount and action are pinned so the amount's right edge equals the
 * instalment cards' (7rem action + 1rem gap = 8rem inset). */
.journey-costs.is-compact .journey-costs-amount { width: 10rem; }

.journey-costs.is-compact th { font-weight: 600; }

/* Same width as the cards' action column plus their gap, so an amount cell
 * ends where .journey-part-amount ends, and the pay-all button shares the
 * right edge of the per-instalment buttons. */
td.journey-costs-action {
    /* 7rem + the 1rem padding = 8rem column: a table cell's specified width
     * EXCLUDES padding (content-box), and the full 8rem pushed the amount
     * column 1rem out of line -- measured 1161 vs 1177 (2026-08-18). */
    width: 7rem;
    text-align: right;
    padding-left: 1rem;
    white-space: nowrap;
}

.journey-costs tfoot th,
.journey-costs tfoot td {
    border-bottom: none;
    border-top: 2px solid rgba(125, 114, 123, 0.35);
    font-weight: 700;
    padding-top: 0.7rem;
}

/* ------------------------------------------------------------------ *
 * Instalments.
 * ------------------------------------------------------------------ */

.journey-parts { list-style: none; padding: 0; margin: 0.5rem 0 1rem; }

/* Label left, amount right-aligned in its own column, action last. Every
 * amount on this page lines up on the same right edge, tabular figures. */
.journey-part {
    display: grid;
    /* Fixed action column, so the amount column ends on the same right edge
       whether or not a row carries a button. */
    grid-template-columns: 1fr auto 7rem;
    gap: 0.35rem 1rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(125, 114, 123, 0.22);
    border-left: 4px solid rgba(125, 114, 123, 0.35);
    border-radius: 10px;
    margin-bottom: 0.6rem;
}

.journey-part-label { min-width: 0; }

.journey-part-amount {
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
}

.journey-part-action { text-align: right; }

.journey-part-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--color-text-secondary, #888);
}

.journey-part-state { font-weight: 600; }

/* An instalment that is not next in line: visibly waiting, not clickable. */
.journey-part-waiting { font-style: italic; }
.journey-part:not(.is-next):not(.is-paid) { opacity: 0.7; }

.journey-part.is-paid    { border-left-color: #5a7a4e; background: rgba(90, 122, 78, 0.05); }
.journey-part.is-paid    .journey-part-state { color: #5a7a4e; }
.journey-part.is-overdue { border-left-color: #a05252; background: rgba(160, 82, 82, 0.05); }

/* A passed deadline is a PILL, not a tinted word (Jeroen, 2026-08-18): the
 * state has consequences (only pay-all remains) and must read as a state. */
.journey-part.is-overdue .journey-part-state {
    background: #a05252;
    color: #fff;
    border-radius: 999px;
    padding: 0.1rem 0.6rem;
    font-size: 0.78rem;
}

.journey-pill {
    display: inline-block;
    border-radius: 999px;
    padding: 0.12rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 0.4rem;
    white-space: nowrap;
}

.journey-pill.is-danger { background: #a05252; color: #fff; }
.journey-pill.is-info   { background: #7D727B; color: #FDFDED; }

.journey-make-lead { margin-top: 1rem; }

.journey-nationality-other { margin-top: 0.5rem; }

/* The branded confirm dialog (JourneyShell::confirmDialog) -- native
 * window.confirm is banned. Same backdrop family as the slide-out. */
.journey-confirm {
    position: fixed;
    inset: 0;
    background: rgba(40, 36, 39, 0.45);
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.journey-confirm[hidden] { display: none; }

.journey-confirm-panel {
    background: var(--color-background, #f8f5f1);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(40, 36, 39, 0.3);
    padding: 1.5rem;
    width: min(24rem, 100%);
    animation: journey-confirm-in 0.18s ease both;
}

@keyframes journey-confirm-in {
    from { opacity: 0; transform: translateY(8px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

.journey-confirm-panel h3 {
    font-family: var(--font-secondary, 'Libre Bodoni', serif);
    font-weight: 500;
    margin: 0 0 0.5rem;
}

.journey-confirm-panel p { margin: 0 0 1.25rem; }

.journey-confirm-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}
.journey-part.is-partial { border-left-color: #b58b4c; }

.journey-parts-total { margin: 0; font-size: 0.95rem; }

.journey-button.is-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

/* ------------------------------------------------------------------ *
 * Guest registration: a compact line per guest, details in a slide-out.
 * Eight expanded forms took the whole page; the list is the overview and
 * the panel is where the work happens.
 * ------------------------------------------------------------------ */

.journey-guest-list { list-style: none; padding: 0; margin: 0.75rem 0 1rem; }

.journey-guest-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(125, 114, 123, 0.2);
    border-radius: 10px;
    margin-bottom: 0.4rem;
    background: #fff;
}

.journey-guest-row.is-complete { border-color: rgba(90, 122, 78, 0.35); }

.journey-guest-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.journey-guest-name small { color: var(--color-text-secondary, #888); margin-left: 0.4rem; }
.journey-guest-name em { color: var(--color-text-secondary, #888); }

.journey-guest-age {
    font-size: 0.85rem;
    color: var(--color-text-secondary, #888);
    white-space: nowrap;
}

.journey-guest-badge {
    font-size: 0.78rem;
    color: var(--color-text-secondary, #888);
    border: 1px solid rgba(125, 114, 123, 0.3);
    border-radius: 999px;
    padding: 0.05rem 0.55rem;
    white-space: nowrap;
}

.journey-guest-row.is-complete .journey-guest-badge {
    color: #5a7a4e;
    border-color: rgba(90, 122, 78, 0.4);
}

.journey-guest-actions { display: flex; gap: 0.6rem; align-items: center; white-space: nowrap; }

.journey-inline-form { display: inline; }

.journey-link-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: 0.85rem;
    color: #7D727B;
    cursor: pointer;
    border-bottom: 1px solid rgba(125, 114, 123, 0.35);
}

.journey-link-button:hover { border-color: #7D727B; }
.journey-link-button.is-danger { color: #a05252; border-color: rgba(160, 82, 82, 0.35); }

.journey-guest-add {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.journey-guest-add .journey-help { margin: 0; }

/* The slide-out itself. */
.journey-slideout {
    position: fixed;
    inset: 0;
    background: rgba(40, 36, 39, 0.4);
    z-index: 50;
    display: flex;
    justify-content: flex-end;
}

.journey-slideout[hidden] { display: none; }

.journey-slideout-panel {
    width: min(30rem, 100%);
    height: 100%;
    /* Without this the padding is added to the 100% height and the panel
       runs past the bottom of the viewport, so its last field is unreachable. */
    box-sizing: border-box;
    background: var(--color-background, #f8f5f1);
    box-shadow: -8px 0 30px rgba(40, 36, 39, 0.2);
    padding: 1.5rem;
    overflow-y: auto;
    animation: journey-slide 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes journey-slide {
    from { transform: translateX(100%); }
    to   { transform: none; }
}

.journey-slideout-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.journey-slideout-head h3 {
    font-family: var(--font-secondary, 'Libre Bodoni', serif);
    font-weight: 500;
    margin: 0;
}

body.has-slideout { overflow: hidden; }

.journey-doc-have {
    font-size: 0.85rem;
    color: #4a4348;
    background: rgba(90, 122, 78, 0.08);
    border-radius: 8px;
    padding: 0.5rem 0.7rem;
    margin: 0 0 0.5rem;
}

.journey-field input[type="file"] {
    width: 100%;
    font: inherit;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

/* ------------------------------------------------------------------ *
 * Apartment-info sheets (JourneyShell::apartmentSheets), opened from the
 * cards on welkom.php and the info buttons on reserveren.php. They reuse
 * the guest slide-out chrome; only the content styling lives here.
 * ------------------------------------------------------------------ */

.journey-info-btn {
    font: inherit;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    padding: 0.15rem 0.7rem;
    border: 1px solid rgba(125, 114, 123, 0.35);
    border-radius: 999px;
    background: #fff;
    color: #7D727B;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.journey-info-btn:hover { border-color: #7D727B; background: rgba(125, 114, 123, 0.07); }

/* Wireframe photo area inside the sheet -- visibly temporary, like the
 * other dashed placeholders; replaced at the design pass. */
.journey-apartment-photo {
    border: 2px dashed rgba(125, 114, 123, 0.4);
    border-radius: 12px;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(125, 114, 123, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    background: repeating-linear-gradient(45deg,
        rgba(125, 114, 123, 0.04), rgba(125, 114, 123, 0.04) 12px,
        transparent 12px, transparent 24px);
}

.journey-apartment-capacity {
    font-weight: 600;
    color: #4a4348;
    margin: 0 0 0.5rem;
}

.journey-apartment-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.journey-apartment-includes li {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(125, 114, 123, 0.15);
    font-size: 0.95rem;
}

/* ------------------------------------------------------------------ *
 * Status timeline on the personal booking page.
 * ------------------------------------------------------------------ */

.journey-steps {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.journey-steps li {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 0.8rem;
    color: var(--color-text-secondary, #888);
}

.journey-steps li::before {
    counter-increment: step;
    content: counter(step);
    display: block;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    margin: 0 auto 0.4rem;
    border-radius: 50%;
    border: 1px solid rgba(125, 114, 123, 0.35);
    background: #fff;
    color: inherit;
    position: relative;
    z-index: 1;
    transition: background 0.3s ease, color 0.3s ease;
}

.journey-steps li:not(:first-child)::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: -50%;
    width: 100%;
    height: 1px;
    background: rgba(125, 114, 123, 0.25);
}

.journey-steps li.is-done { color: #7D727B; }

.journey-steps li.is-done::before {
    content: '\2713';
    background: #7D727B;
    border-color: #7D727B;
    color: #FDFDED;
}

.journey-steps li.is-current { color: var(--color-text-primary, #333); font-weight: 600; }
.journey-steps li.is-current::before { border-color: #7D727B; }

/* ------------------------------------------------------------------ */

@media (max-width: 560px) {
    .journey-row { grid-template-columns: 1fr; }
    .journey-panel { padding: 1.4rem; }
}
