/* ─── Card shadow tokens (consistent across every card on /getting-there;
            future cards on this page + sub-pages should use --card-shadow too) ─── */
    .ia-wrap, .page-getting-there, body.page-getting-there, body {
      --card-shadow: 0 2px 6px rgba(30, 30, 28, 0.09), 0 14px 36px rgba(30, 30, 28, 0.11);
      --card-shadow-hover: 0 3px 10px rgba(30, 30, 28, 0.13), 0 22px 54px rgba(30, 30, 28, 0.16);
    }

    /* ───── Editorial intro — wider premium card ───── */
    .gt-intro {
      max-width: 1100px; margin: 0 auto;
      background: #fff;
      border: 1px solid var(--ivory-2, #e9e3d6);
      border-radius: 14px;
      padding: clamp(40px, 5vw, 64px) clamp(28px, 4vw, 64px);
      box-shadow: var(--card-shadow);
      position: relative;
      text-align: center;
    }
    .gt-intro__ornament {
      position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
      color: #c4a052; font-size: 1.25rem;
    }
    .gt-intro__eyebrow {
      display: block; text-align: center;
      font-size: 0.7188rem; text-transform: uppercase; letter-spacing: 0.20em;
      color: #6b6a66; margin: 18px 0 22px;
    }
    .gt-intro__title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2.125rem, 4.5vw, 3.25rem);
      line-height: 1.05; font-weight: 500;
      color: #784356;
      margin: 0 0 clamp(20px, 3vw, 28px);
      text-align: center;
    }
    .gt-intro__lead {
      max-width: 760px; margin: 0 auto clamp(14px, 2vw, 18px);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.25rem, 2.2vw, 1.625rem);
      font-weight: 400; line-height: 1.45;
      color: #1e1e1c;
    }
    .gt-intro__lead strong { color: #784356; font-weight: 500; }
    .gt-intro__body {
      max-width: 780px; margin: 0 auto;
      font-size: clamp(0.9062rem, 1.3vw, 1rem);
      line-height: 1.85; color: #4f4e4c;
    }
    .gt-intro__rule {
      width: 60px; height: 1px;
      background: #c4a052; opacity: 0.6;
      margin: clamp(28px, 4vw, 40px) auto clamp(24px, 3vw, 32px);
    }

    /* Three orienting stat chips */
    .intro-stats {
      display: flex; justify-content: center; gap: clamp(32px, 6vw, 72px);
      flex-wrap: wrap;
    }
    .intro-stat {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      padding: 0 6px;
      position: relative;
    }
    .intro-stat + .intro-stat::before {
      content: ''; position: absolute; left: calc(-1 * clamp(16px, 3vw, 36px));
      top: 12%; bottom: 12%;
      width: 1px; background: #d8cbb5; opacity: 0.7;
    }
    .intro-stat__num {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(2rem, 3.6vw, 2.625rem);
      font-weight: 500; color: #784356; line-height: 1;
    }
    .intro-stat__lbl {
      font-size: 0.7188rem; text-transform: uppercase; letter-spacing: 0.14em;
      color: #6b6a66; text-align: center;
    }
    @media (max-width: 600px) {
      .gt-intro { padding: 32px 22px; }
      .intro-stats { gap: 20px; }
      .intro-stat + .intro-stat::before { display: none; }
    }

    /* ───── Live status chip strip ───── */
    .travel-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
    .travel-chip {
      background: #fff; border: 1px solid var(--ivory-2, #e9e3d6); border-radius: 8px;
      padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start;
      box-shadow: var(--card-shadow);
    }
    .travel-chip__pulse { width: 16px; height: 16px; position: relative; flex-shrink: 0; margin-top: 4px; }
    .travel-chip__pulse span {
      position: absolute; inset: 0; border-radius: 50%; background: currentColor; opacity: 0.4;
      animation: travelPulse 2.4s ease-out infinite;
    }
    .travel-chip__pulse span:nth-child(2) { animation-delay: 1.2s; }
    @keyframes travelPulse {
      0%   { transform: scale(0.35); opacity: 0.85; }
      80%  { transform: scale(1.6);  opacity: 0;    }
      100% { transform: scale(1.6);  opacity: 0;    }
    }
    .travel-chip--good { color: #2e6b46; }
    .travel-chip--warn { color: #b07a14; }
    .travel-chip--bad  { color: #b03a3a; }
    .travel-chip__lbl { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.12em; color: #6b6a66; }
    .travel-chip__val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.375rem; line-height: 1.1; margin-top: 2px; font-weight: 500; }
    .travel-chip__detail { font-size: 0.7812rem; color: #6b6a66; margin-top: 4px; }

    /* ───── Train boards (two-column) ───── */
    .train-boards {
      display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 28px);
      max-width: 1100px; margin: 0 auto;
    }
    @media (max-width: 900px) {
      .train-boards { grid-template-columns: 1fr; }
    }
    .train-board {
      background: #fff; border: 1px solid var(--ivory-2, #e9e3d6); border-radius: 12px;
      padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 36px);
      position: relative;
      box-shadow: var(--card-shadow);
      overflow: hidden;
    }
    /* Faded station photo behind the board */
    .train-board__bg {
      position: absolute; inset: 0;
      background-image: var(--station-bg);
      background-size: cover; background-position: center;
      opacity: 0.20;
      transition: opacity 0.45s ease;
      pointer-events: none;
      z-index: 0;
    }
    /* Soft cream wash so the photo doesn't fight the type */
    .train-board__bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(255,250,240,0.4) 0%, rgba(255,250,240,0.7) 100%);
    }
    /* Keep all card content above the photo */
    .train-board > *:not(.train-board__bg) { position: relative; z-index: 1; }
    .train-board__ornament { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); color: #c4a052; font-size: 1.125rem; z-index: 1; }
    .train-board__eyebrow {
      display: block; text-align: center;
      font-size: 0.6562rem; text-transform: uppercase; letter-spacing: 0.18em; color: #6b6a66; margin-top: 14px;
    }
    .train-board__title { text-align: center; margin: 8px 0 4px; }
    .train-board__title--small {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.5rem, 3.2vw, 2rem); font-weight: 500; line-height: 1.05;
      color: #784356;
    }
    .train-board__note {
      text-align: center; font-size: 0.75rem; color: #6b6a66;
      margin: 0 0 22px; font-style: italic;
    }
    .train-rows { display: flex; flex-direction: column; gap: 0; }
    .train-row {
      display: grid; grid-template-columns: 110px 1fr auto; gap: 18px; align-items: center;
      padding: 14px 4px; border-bottom: 1px solid #f0ebde;
      animation: trainSlide 0.6s ease-out both; animation-delay: var(--reveal-delay, 0s);
    }
    @keyframes trainSlide { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .train-row:last-child { border-bottom: 0; }
    .train-row__time { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1; }
    .train-row__hh { font-size: 1.75rem; font-weight: 500; color: #784356; }
    .train-row__rt { display: block; font-size: 0.8125rem; color: #b03a3a; margin-top: 4px; font-family: 'Jost', sans-serif; }
    .train-row__dest { line-height: 1.3; }
    .train-row__city { font-size: 1.0625rem; color: #1e1e1c; font-weight: 500; }
    .train-row__sub { font-size: 0.75rem; color: #6b6a66; margin-top: 3px; }
    .train-row__status { text-align: right; }
    .train-row--empty { display: block; text-align: center; padding: 28px; color: #6b6a66; font-style: italic; }
    .train-row.is-cancelled .train-row__hh { text-decoration: line-through; color: #b03a3a; }
    .train-board__source {
      margin-top: 24px; text-align: center;
      font-size: 0.7188rem; color: #8a8784; font-style: italic;
    }
    .train-board__expand {
      display: block; margin: 18px auto 0;
      background: transparent; border: 1px solid #e9e3d6;
      color: #784356; padding: 9px 22px; border-radius: 999px;
      font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
      cursor: pointer; transition: all 0.2s ease;
    }
    .train-board__expand:hover { background: #784356; color: #fff; border-color: #784356; }
    .status-pill {
      display: inline-block; padding: 4px 12px; border-radius: 999px;
      font-size: 0.6562rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    }
    .status-pill--good { background: rgba(74, 157, 106, 0.15);  color: #2e6b46; }
    .status-pill--warn { background: rgba(196, 160, 82, 0.20);  color: #7a5a14; }
    .status-pill--bad  { background: rgba(176, 58, 58, 0.12);   color: #8a1f1f; }

    /* ───── Road card ───── */
    .road-card {
      background: #fff; border: 1px solid var(--ivory-2, #e9e3d6); border-radius: 12px;
      overflow: hidden; box-shadow: var(--card-shadow);
      max-width: 1100px; margin: 0 auto;
    }
    .road-card__art { width: 100%; height: clamp(160px, 22vw, 220px); overflow: hidden; }
    .road-card__svg { width: 100%; height: 100%; display: block; }
    .road-card__body { padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 40px); }
    .road-card__header {
      display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
      padding-bottom: 22px; margin-bottom: 28px; border-bottom: 1px solid #f0ebde;
    }
    .road-card__eyebrow {
      display: block; font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em;
      color: #6b6a66; margin-bottom: 10px;
    }
    .road-card__title { margin: 0; }
    .road-card__status {
      font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.875rem;
      margin: 0; line-height: 1; white-space: nowrap;
    }
    .road-card--good .road-card__status { color: #2e6b46; }
    .road-card--warn .road-card__status { color: #b07a14; }
    .road-card--bad  .road-card__status { color: #b03a3a; }
    .road-card__layout {
      display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 48px);
    }
    .road-card__incidents { list-style: none; padding: 0; margin: 0 0 20px; }
    .road-card__incidents li {
      padding: 10px 14px; background: #fffaf0; border-left: 3px solid #c4a052;
      margin-bottom: 6px; font-size: 0.8438rem;
    }
    .road-card--bad .road-card__incidents li { border-color: #b03a3a; background: #fff5f3; }
    .road-card__incident-loc { color: #6b6a66; }
    .road-card__prose { color: #4f4e4c; font-size: 0.9062rem; line-height: 1.75; margin: 0 0 14px; }
    .road-card__prose:last-of-type { margin-bottom: 0; }
    .road-card__source { font-size: 0.7188rem; color: #8a8784; font-style: italic; margin: 24px 0 0; }

    .road-card__aside {
      background: #faf6ef; border-radius: 8px; padding: 22px 24px;
      border: 1px solid #f0ebde; align-self: start;
    }
    .road-card__aside-lbl {
      display: block; font-size: 0.6562rem; text-transform: uppercase; letter-spacing: 0.18em;
      color: #784356; font-weight: 600; margin-bottom: 14px;
    }
    .road-card__junctions { margin: 0; }
    .road-card__junctions dt {
      font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.0625rem;
      color: #1e1e1c; font-weight: 500; margin-top: 14px;
    }
    .road-card__junctions dt:first-of-type { margin-top: 0; }
    .road-card__junctions dd {
      margin: 4px 0 0; font-size: 0.8125rem; color: #4f4e4c; line-height: 1.6;
    }

    @media (max-width: 880px) {
      .road-card__header { flex-direction: column; align-items: flex-start; gap: 4px; }
      .road-card__layout { grid-template-columns: 1fr; }
      .road-card__status { font-size: 1.5rem; }
    }

    /* ───── Reach grid (What's reachable from the front door) ───── */
    .reach-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(18px, 2.5vw, 28px);
      max-width: 1100px;
      margin: 0 auto;
    }
    .reach-card {
      background: #fff;
      border: 1px solid var(--ivory-2, #e9e3d6);
      border-radius: 12px;
      padding: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 36px);
      position: relative;
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    .reach-card::before {
      content: '';
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
    }
    .reach-card--foot::before  { background: linear-gradient(180deg, #d6b34e, #b08a2c); }
    .reach-card--bus::before   { background: linear-gradient(180deg, #c8758b, #a14a64); }
    .reach-card--car::before   { background: linear-gradient(180deg, #8d4a5e, #5a2e3e); }
    .reach-card--train::before { background: linear-gradient(180deg, #6e95b5, #3d6088); }

    .reach-card__head {
      display: flex; gap: 18px; align-items: center; margin-bottom: 18px;
    }
    .reach-card__icon {
      width: 54px; height: 54px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%; background: #faf6ef;
    }
    .reach-card--foot  .reach-card__icon { background: #fdf3d8; color: #8a6814; }
    .reach-card--bus   .reach-card__icon { background: #fae3ea; color: #a14a64; }
    .reach-card--car   .reach-card__icon { background: #f0dae0; color: #784356; }
    .reach-card--train .reach-card__icon { background: #dde7f0; color: #3d6088; }
    .reach-card__icon svg { width: 30px; height: 30px; }

    .reach-card__title { flex: 1; min-width: 0; }
    .reach-card__eyebrow {
      display: block;
      font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em;
      color: #6b6a66; font-weight: 500; margin-bottom: 3px;
    }
    .reach-card__lede {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.375rem, 2.6vw, 1.75rem);
      font-weight: 500; color: #784356;
      margin: 0; line-height: 1.1;
    }
    .reach-card--train .reach-card__lede { color: #3d6088; }
    .reach-card--bus   .reach-card__lede { color: #a14a64; }
    .reach-card--foot  .reach-card__lede { color: #8a6814; }
    .reach-card--car   .reach-card__lede { color: #784356; }

    .reach-card__from {
      display: block;
      margin-top: 6px;
      font-size: 0.7812rem;
      color: #6b6a66;
      letter-spacing: 0.02em;
      overflow: hidden;
      min-height: 1.5em;
    }
    .reach-card__from-prefix {
      font-style: italic; opacity: 0.85; margin-right: 6px;
    }
    .reach-card__from-pair {
      display: inline-block;
      color: #1e1e1c; font-weight: 500;
      transition: transform 0.5s cubic-bezier(0.22, 0.71, 0.36, 1), opacity 0.5s ease;
      will-change: transform, opacity;
    }
    .reach-card__from-pair.is-in  { transform: translateY(0);    opacity: 1; }
    .reach-card__from-pair.is-out { transform: translateY(-10px); opacity: 0; }
    .reach-card__from-dot  { color: #b0a78f; }
    .reach-card__from-time { color: #784356; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 0.9375rem; }
    .reach-card--train .reach-card__from-time { color: #3d6088; }

    .reach-card__rule {
      height: 1px; background: #f0ebde;
      margin: 14px 0 18px;
    }

    .reach-card__list {
      list-style: none; padding: 0; margin: 0 0 22px;
      display: flex; flex-direction: column; gap: 8px;
    }
    .reach-place {
      display: flex; align-items: baseline; gap: 8px;
      font-size: 0.875rem; color: #1e1e1c;
    }
    .reach-place__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .reach-place__dots {
      flex: 1; height: 1px;
      background-image: radial-gradient(circle, #b0a78f 1px, transparent 1.5px);
      background-size: 6px 100%; background-repeat: repeat-x;
      align-self: center; opacity: 0.7;
    }
    .reach-place__time {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.0625rem; color: #784356; white-space: nowrap; font-weight: 500;
    }
    .reach-card--train .reach-place__time { color: #3d6088; }
    .reach-card--bus   .reach-place__time { color: #a14a64; }
    .reach-card--foot  .reach-place__time { color: #8a6814; }

    .reach-card__note {
      font-size: 0.8438rem; color: #4f4e4c; line-height: 1.7; margin: 0;
      padding-top: 16px; border-top: 1px solid #f0ebde;
      font-style: italic;
    }

    @media (max-width: 800px) {
      .reach-grid { grid-template-columns: 1fr; }
      .reach-card__head { gap: 14px; }
      .reach-card__icon { width: 48px; height: 48px; }
      .reach-card__icon svg { width: 26px; height: 26px; }
    }

    /* ───── Local rides grid (Tramway / Cable Car / Land Train / Buses / Boats / Jet) ───── */
    .rides-grid {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(18px, 2.5vw, 28px);
      max-width: 1100px; margin: 0 auto;
    }
    .ride-card {
      background: #fff;
      border: 1px solid var(--ivory-2, #e9e3d6);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
      position: relative;
      display: flex; flex-direction: column;
    }
    .ride-card::before {
      content: ''; position: absolute; inset: 0 auto 0 0; width: 4px; z-index: 2;
    }
    .ride-card--tramway::before   { background: linear-gradient(180deg, #d6b34e, #b08a2c); }
    .ride-card--cablecar::before    { background: linear-gradient(180deg, #6e95b5, #3d6088); }
    .ride-card--landtrain::before   { background: linear-gradient(180deg, #c8758b, #a14a64); }
    .ride-card--opentopbus::before  { background: linear-gradient(180deg, #c66a6a, #883a3a); }
    .ride-card--marinedrive::before { background: linear-gradient(180deg, #5a8a94, #2f5a64); }
    .ride-card--seajay::before      { background: linear-gradient(180deg, #7eb5c7, #4a7e94); }
    .ride-card--seaborne::before    { background: linear-gradient(180deg, #6a8aa0, #34546a); }
    .ride-card--jetrides::before    { background: linear-gradient(180deg, #d85a4e, #8a2a1f); }

    .ride-card__art {
      display: block; width: 100%; aspect-ratio: 360/230; overflow: hidden;
      text-decoration: none; color: inherit;
      position: relative;
    }
    a.ride-card__art { cursor: pointer; }
    a.ride-card__art:focus-visible { outline: 2px solid #c4a052; outline-offset: 2px; }
    .ride-card__art svg { display: block; width: 100%; height: 100%; transition: transform 0.5s ease; }
    .ride-card__art--photo picture,
    .ride-card__art--photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
    a.ride-card__art:hover svg,
    a.ride-card__art:hover img { transform: scale(1.04); }

    .ride-card__body { padding: clamp(22px, 3vw, 34px); flex: 1; display: flex; flex-direction: column; }
    .ride-card__eyebrow {
      display: block;
      font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em;
      color: #6b6a66; font-weight: 500;
    }
    .ride-card__title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 500; line-height: 1.1;
      color: #784356; margin: 6px 0 16px;
    }
    .ride-card--cablecar    .ride-card__title { color: #3d6088; }
    .ride-card--landtrain   .ride-card__title { color: #a14a64; }
    .ride-card--tramway     .ride-card__title { color: #8a6814; }
    .ride-card--opentopbus  .ride-card__title { color: #883a3a; }
    .ride-card--marinedrive .ride-card__title { color: #2f5a64; }
    .ride-card--seajay      .ride-card__title { color: #4a7e94; }
    .ride-card--seaborne    .ride-card__title { color: #34546a; }
    .ride-card--jetrides    .ride-card__title { color: #8a2a1f; }

    .ride-card__copy {
      flex: 1;
      color: #4f4e4c; font-size: 0.9062rem; line-height: 1.75; margin: 0 0 18px;
    }
    .ride-card__practical {
      margin: 0; padding-top: 14px; border-top: 1px solid #f0ebde;
      font-size: 0.7812rem; color: #6b6a66;
    }
    .ride-card__practical strong { color: #1e1e1c; font-weight: 500; }
    .ride-card__practical a { color: #784356; text-decoration: none; border-bottom: 1px solid currentColor; }
    .ride-card__practical a:hover { color: #5a2e3e; }

    .ride-card__website {
      margin: 16px 0 0; padding: 0;
    }
    .ride-card__website a {
      --pill: #784356;
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      min-width: 168px; padding: 9px 18px;
      border: 1px solid var(--pill);
      border-radius: 999px;
      color: var(--pill); background: transparent;
      font-family: 'Jost', sans-serif;
      font-size: 0.7188rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .ride-card__website a:hover {
      background: var(--pill); color: #fff8da; transform: translateY(-1px);
    }
    .ride-card--tramway     .ride-card__website a { --pill: #8a6814; }
    .ride-card--cablecar    .ride-card__website a { --pill: #3d6088; }
    .ride-card--landtrain   .ride-card__website a { --pill: #a14a64; }
    .ride-card--opentopbus  .ride-card__website a { --pill: #883a3a; }
    .ride-card--marinedrive .ride-card__website a { --pill: #2f5a64; }
    .ride-card--seajay      .ride-card__website a { --pill: #4a7e94; }
    .ride-card--seaborne    .ride-card__website a { --pill: #34546a; }
    .ride-card--jetrides    .ride-card__website a { --pill: #8a2a1f; }

    @media (max-width: 800px) {
      .rides-grid { grid-template-columns: 1fr; }
    }

    /* ───── Taxi firms — dedicated section ───── */
    .taxis-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2vw, 28px);
      max-width: 1200px; margin: 0 auto;
    }
    .taxi-card {
      position: relative;
      background: linear-gradient(180deg, #fffaf0 0%, #fff 60%);
      border: 1px solid #e6dcc4;
      border-radius: 12px;
      padding: clamp(26px, 2.8vw, 34px) clamp(22px, 2.4vw, 28px) clamp(22px, 2.4vw, 26px);
      display: flex; flex-direction: column;
      gap: 14px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(30,30,28,0.06), 0 14px 36px rgba(30,30,28,0.08);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .taxi-card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent 0%, #c4a052 25%, #d4b878 50%, #c4a052 75%, transparent 100%);
    }
    .taxi-card::after {
      content: attr(data-num);
      position: absolute; top: 14px; right: 18px;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 2.5rem; font-weight: 400; font-style: italic;
      color: rgba(196, 160, 82, 0.18);
      line-height: 1; letter-spacing: -0.02em;
      pointer-events: none;
    }
    .taxi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 10px rgba(30,30,28,0.08), 0 22px 50px rgba(30,30,28,0.14);
      border-color: #c4a052;
    }

    .taxi-card__head {
      text-align: center;
      padding-bottom: 14px;
      position: relative;
    }
    .taxi-card__head::after {
      content: ""; display: block;
      width: 36px; height: 1px;
      background: #c4a052;
      margin: 14px auto 0;
    }
    .taxi-card__name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(1.4rem, 2.4vw, 1.625rem);
      font-weight: 500; font-style: italic; line-height: 1.1;
      color: #784356;
      margin: 0 0 6px;
    }
    .taxi-card__badge {
      display: inline-block;
      font-family: 'Jost', sans-serif;
      font-size: 0.6562rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: #8a6814; font-weight: 500;
    }
    .taxi-card__note {
      flex: 1;
      text-align: center;
      font-size: 0.8438rem; line-height: 1.7; color: #4f4e4c;
      margin: 0;
    }
    .taxi-card__pulse {
      display: inline-flex; align-items: center; gap: 8px;
      align-self: center;
      font-family: 'Jost', sans-serif;
      font-size: 0.6562rem; letter-spacing: 0.18em; text-transform: uppercase;
      color: #6b6a66; font-weight: 500;
    }
    .taxi-card__pulse-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #5fa86c;
      box-shadow: 0 0 0 0 rgba(95, 168, 108, 0.7);
      animation: taxiPulse 2.4s ease-out infinite;
    }
    @keyframes taxiPulse {
      0%   { box-shadow: 0 0 0 0 rgba(95,168,108,0.6); }
      70%  { box-shadow: 0 0 0 10px rgba(95,168,108,0); }
      100% { box-shadow: 0 0 0 0 rgba(95,168,108,0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .taxi-card__pulse-dot { animation: none; }
    }

    .taxi-card__call {
      position: relative;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 4px;
      padding: 16px 18px;
      background: linear-gradient(160deg, #8a4a5e 0%, #784356 55%, #5a2e3e 100%);
      color: #fff8da;
      border-radius: 10px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 12px rgba(120, 67, 86, 0.28);
      overflow: hidden;
    }
    .taxi-card__call::before {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(160deg, #a05a6e 0%, #784356 100%);
      opacity: 0; transition: opacity 0.25s ease;
    }
    .taxi-card__call > * { position: relative; z-index: 1; }
    .taxi-card__call:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(120, 67, 86, 0.4); }
    .taxi-card__call:hover::before { opacity: 1; }
    .taxi-card__call:focus-visible { outline: 2px solid #c4a052; outline-offset: 3px; }
    .taxi-card__call-label {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Jost', sans-serif;
      font-size: 0.6562rem; letter-spacing: 0.22em; text-transform: uppercase;
      font-weight: 500; opacity: 0.9;
    }
    .taxi-card__call-label svg {
      width: 11px; height: 11px;
      animation: taxiRing 3s ease-in-out infinite;
      transform-origin: 50% 80%;
    }
    @keyframes taxiRing {
      0%, 60%, 100% { transform: rotate(0); }
      65% { transform: rotate(-12deg); }
      70% { transform: rotate(10deg); }
      75% { transform: rotate(-8deg); }
      80% { transform: rotate(6deg); }
      85% { transform: rotate(-4deg); }
      90% { transform: rotate(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .taxi-card__call-label svg { animation: none; }
    }
    .taxi-card__call-number {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 1.75rem; font-weight: 500; letter-spacing: 0.04em;
      margin-top: 2px;
    }
    .taxis-footnote {
      text-align: center;
      max-width: 640px; margin: clamp(32px, 4vw, 52px) auto 0;
      font-style: italic;
      font-size: 0.8438rem; line-height: 1.65; color: #6b6a66;
    }
    @media (max-width: 960px) {
      .taxis-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 560px) {
      .taxis-grid { grid-template-columns: 1fr; }
    }

    /* ───── Planner card ───── */
    .planner-card {
      background: #fff; border: 1px solid var(--ivory-2, #e9e3d6); border-radius: 12px;
      padding: clamp(24px, 3vw, 36px);
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
      gap: clamp(20px, 3vw, 36px);
      align-items: stretch;
      box-shadow: var(--card-shadow);
    }
    .planner-card__main {
      display: flex; flex-direction: column; justify-content: center;
      min-height: 320px;
    }
    .planner-card__embed { width: 100%; }
    .planner-card__embed iframe { width: 100%; min-height: 320px; border: 0; }
    .planner-card__placeholder { text-align: center; padding: 24px 8px; }
    .planner-card__placeholder-art { margin: 0 auto 18px; opacity: 0.85; }
    .planner-card__placeholder p { color: #6b6a66; font-size: 0.8438rem; line-height: 1.7; max-width: 480px; margin: 0 auto; }
    .planner-card__placeholder a { color: #784356; }

    .planner-card__aside {
      background: #faf6ef;
      border: 1px solid #f0ebde; border-radius: 8px;
      padding: 22px 24px;
      display: flex; flex-direction: column;
    }
    .planner-card__aside-lbl {
      display: block; font-size: 0.6562rem; text-transform: uppercase; letter-spacing: 0.18em;
      color: #784356; font-weight: 600; margin-bottom: 6px;
    }
    .planner-card__aside-hint { font-size: 0.7812rem; color: #6b6a66; line-height: 1.55; margin: 0 0 14px; font-style: italic; }
    .planner-card__quick {
      list-style: none; padding: 0; margin: 0;
      display: grid; gap: 6px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .planner-quick {
      display: block;
      padding: 10px 12px; border-radius: 6px;
      background: #fff; border: 1px solid #ede7d6;
      text-decoration: none; color: inherit;
      position: relative;
      transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }
    .planner-quick:hover { border-color: #784356; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
    .planner-quick__name { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.0625rem; color: #784356; font-weight: 500; line-height: 1.1; }
    .planner-quick__note { display: block; font-size: 0.7188rem; color: #6b6a66; margin-top: 3px; line-height: 1.3; }
    .planner-quick__arrow { position: absolute; top: 10px; right: 12px; color: #c4a052; font-size: 0.875rem; }

    @media (max-width: 880px) {
      .planner-card { grid-template-columns: 1fr; }
      .planner-card__quick { grid-template-columns: 1fr; }
    }

    /* ───── Onward grid ───── */
    .onward-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
    .onward-card {
      display: flex; flex-direction: column; background: #fff;
      border: 1px solid var(--ivory-2, #e9e3d6); border-radius: 10px; overflow: hidden;
      color: inherit;
      box-shadow: var(--card-shadow);
    }
    .onward-card__art { height: 150px; background-size: cover; background-position: center; background-color: #f7f1e3; }
    .onward-card__body { padding: 16px 20px 20px; display: flex; flex-direction: column; flex: 1; }
    .onward-card__band { font-size: 0.6562rem; text-transform: uppercase; letter-spacing: 0.12em; color: #784356; font-weight: 600; }
    .onward-card__title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.375rem; font-weight: 500; margin: 6px 0 8px; line-height: 1.1; color: #1e1e1c; }
    .onward-card__excerpt { font-size: 0.8125rem; color: #6b6a66; line-height: 1.55; margin: 0 0 14px; flex: 1; }
    .onward-card__actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      padding-top: 10px; border-top: 1px solid #f0ebde;
    }
    .onward-card__cta,
    .onward-card__find {
      font-size: 0.75rem; letter-spacing: 0.04em; font-weight: 500;
      text-decoration: none; padding: 2px 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .onward-card__cta { color: #784356; }
    .onward-card__cta:hover { border-bottom-color: #784356; color: #5a2e3e; }
    .onward-card__find { color: #2e6b46; }
    .onward-card__find:hover { border-bottom-color: #2e6b46; color: #1c4d31; }

@media (max-width: 720px) {
      .train-row { grid-template-columns: 88px 1fr; row-gap: 6px; }
      .train-row__status { grid-column: 2; text-align: left; }
      .road-card__art { height: 80px; }
    }

/* ── Deep-link landing ────────────────────────────────────────────
   /find-us sends guests straight to these three blocks. The site
   header is position:fixed at 80px (64px once scrolled), so without
   this the anchor puts the section top underneath it. Clears the
   header and leaves a little breathing room above the card.        */
#trains-now,
#a55-status,
#planner { scroll-margin-top: 104px; }
