:root {
  --walks-bg: #0d1512;
  --walks-panel: rgba(20, 31, 27, 0.9);
  --walks-panel-solid: #17231f;
  --walks-panel-soft: rgba(255, 247, 232, 0.08);
  --walks-ink: #fff7e8;
  --walks-muted: #c6d1c4;
  --walks-line: rgba(229, 238, 218, 0.18);
  --walks-teal: #94d9ce;
  --walks-teal-deep: #224f48;
  --walks-copper: #d19366;
  --walks-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --aw-visual-height: 100dvh;
  --aw-visual-width: 100vw;
  --aw-map-bottom-reserve: 6rem;
}

html[data-theme="albany-walks"][data-sbs-theme="light"] {
  --walks-bg: #f5f8fc;
  --walks-panel: rgba(255, 255, 255, 0.9);
  --walks-panel-solid: #ffffff;
  --walks-panel-soft: rgba(10, 25, 46, 0.06);
  --walks-ink: #07172d;
  --walks-muted: #5d6b7d;
  --walks-line: rgba(7, 23, 45, 0.14);
  --walks-teal: #1a756d;
  --walks-teal-deep: #dff3f0;
  --walks-copper: #9a5c2f;
  --walks-shadow: 0 22px 70px rgba(26, 42, 66, 0.16);
}

html[data-theme="albany-walks"],
.route-albany-walks,
.route-albany-walks-start {
  background: var(--walks-bg);
  color: var(--walks-ink);
}

.route-albany-walks,
.route-albany-walks-start {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  height: var(--aw-visual-height, 100dvh);
  margin: 0;
  overflow: hidden;
}

.walks-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  height: var(--aw-visual-height, 100dvh);
  background:
    radial-gradient(circle at 20% 0%, rgba(148, 217, 206, 0.14), transparent 26rem),
    linear-gradient(180deg, #111b17, #08100d 74%);
}

.walks-page-no-nav {
  grid-template-rows: minmax(0, 1fr);
}

.walks-main {
  min-height: 0;
  overflow: hidden;
}

.walks-nav {
  position: relative;
  z-index: 1000;
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  gap: 1rem;
  padding-inline: clamp(0.85rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--walks-line);
  background: linear-gradient(90deg, rgba(11, 18, 15, 0.96), rgba(18, 28, 24, 0.92));
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.24);
}

.walks-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--walks-ink);
  flex: 0 1 auto;
  font-weight: 800;
  text-decoration: none;
}

.walks-brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.walks-brand:hover,
.walks-brand:focus {
  color: var(--walks-ink);
}

.walks-brand-mark {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 0.55rem;
  background: rgba(255, 247, 232, 0.08);
  color: var(--walks-ink);
  font-weight: 900;
  overflow: hidden;
}

.walks-brand-mark img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.walks-nav-status {
  display: flex;
  min-width: 0;
  max-width: min(45rem, 52vw);
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  padding: 0.58rem 0.72rem 0.58rem 0.95rem;
  border: 1px solid rgba(255, 247, 232, 0.13);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 247, 232, 0.06);
}

.walks-nav-status-text {
  min-width: 0;
  overflow: hidden;
  color: var(--walks-ink);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.walks-nav-status-count {
  flex: 0 0 auto;
  padding: 0.32rem 0.58rem;
  border: 1px solid rgba(148, 217, 206, 0.28);
  border-radius: 999px;
  background: rgba(148, 217, 206, 0.12);
  color: var(--walks-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.walks-mobile-status-footer {
  pointer-events: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 750;
  display: flex;
  min-height: calc(3.35rem + env(safe-area-inset-bottom));
  align-items: center;
  gap: 0.8rem;
  padding: 0.68rem 1rem calc(0.68rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 247, 232, 0.15);
  background: rgba(16, 23, 19, 0.95);
  box-shadow: 0 -0.9rem 1.4rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.walks-mobile-status-text {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--walks-ink);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.walks-mobile-status-count {
  flex: 0 0 auto;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(148, 217, 206, 0.28);
  border-radius: 999px;
  background: rgba(148, 217, 206, 0.12);
  color: var(--walks-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.walks-eyebrow,
.eyebrow {
  margin: 0;
  color: var(--walks-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.route-albany-walks-start,
.route-albany-walks-start .walks-page {
  background: #f7f9fc;
  color: #0a1730;
}

.walks-storefront {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 6%, rgba(63, 119, 206, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 58%, #eef3f9 100%);
  color: #0a1730;
}

.walks-storefront-header {
  z-index: 30;
  display: flex;
  min-height: clamp(4.1rem, 7vh, 5.4rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(13, 27, 57, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.7rem 2rem rgba(18, 38, 63, 0.06);
}

.walks-storefront-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #091a38;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.walks-storefront-brand:hover,
.walks-storefront-brand:focus {
  color: #091a38;
}

.walks-storefront-brand-mark {
  display: grid;
  width: clamp(2.3rem, 4.2vw, 3rem);
  height: clamp(2.3rem, 4.2vw, 3rem);
  place-items: center;
  border-radius: 0.75rem;
  background: #071834;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  box-shadow: 0 0.7rem 1.5rem rgba(7, 24, 52, 0.18);
}

.walks-storefront-header-count {
  display: inline-flex;
  min-width: 4.4rem;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(13, 27, 57, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #12223d;
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 0.8rem 1.8rem rgba(18, 38, 63, 0.07);
}

.walks-storefront-frame {
  position: relative;
  min-height: 0;
  padding: clamp(0.7rem, 1.3vw, 1.1rem) clamp(0.85rem, 2.2vw, 1.7rem) 0;
  overflow: hidden;
}

.walks-storefront-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 1rem;
  touch-action: pan-y;
}

.walks-storefront-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(1.2rem);
  transition: opacity 360ms ease, transform 420ms ease;
}

.walks-storefront-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.walks-storefront-slide[role="link"] {
  cursor: pointer;
}

.walks-storefront-slide:focus-visible {
  outline: 3px solid #2e6bd3;
  outline-offset: -0.35rem;
}

.walks-storefront-hero {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #dfeaf4;
  box-shadow: 0 1rem 2.6rem rgba(18, 38, 63, 0.14);
}

.walks-storefront-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 700ms ease;
  -webkit-user-drag: none;
}

html[data-theme="albany-walks"][data-sbs-theme="light"] .walks-page {
  background:
    radial-gradient(circle at 20% 0%, rgba(26, 117, 109, 0.1), transparent 26rem),
    linear-gradient(180deg, #ffffff, #edf3f8 74%);
}

.walks-storefront-hero picture {
  position: absolute;
  inset: 0;
  display: block;
}

.walks-storefront-slide[role="link"]:hover .walks-storefront-image,
.walks-storefront-slide[role="link"]:focus-visible .walks-storefront-image {
  transform: scale(1.018);
}

.walks-storefront-image-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.98) 0%, rgba(247, 249, 252, 0.86) 23%, rgba(247, 249, 252, 0.34) 48%, rgba(247, 249, 252, 0.02) 74%),
    linear-gradient(180deg, rgba(7, 24, 52, 0.02), rgba(7, 24, 52, 0.16));
}

.walks-storefront-copy {
  z-index: 10;
  position: absolute;
  top: clamp(1.25rem, 3.5vw, 2.55rem);
  left: clamp(1.2rem, 4vw, 3.2rem);
  display: grid;
  gap: clamp(0.45rem, 0.9vw, 0.72rem);
  width: min(38rem, 52%);
  max-width: calc(100% - 2rem);
  color: #0a1730;
}

.walks-storefront-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(46, 107, 211, 0.1);
  color: #245fbf;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.walks-storefront-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: #071834;
  font-size: clamp(3rem, 5.45vw, 5.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.walks-storefront-copy p:not(.walks-storefront-pill) {
  max-width: 30rem;
  margin: 0;
  color: #243653;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
}

.walks-storefront-actions,
.walks-storefront-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.walks-storefront-action,
.walks-storefront-mobile-action {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-weight: 900;
  line-height: 1;
}

.walks-storefront-action {
  padding: 0.75rem 1.05rem;
  font-size: 0.85rem;
}

.walks-storefront-action-primary,
.walks-storefront-mobile-action-primary {
  background: #071834;
  color: #fff;
  box-shadow: 0 0.85rem 1.6rem rgba(7, 24, 52, 0.18);
}

.walks-storefront-action-secondary,
.walks-storefront-mobile-action-secondary {
  border: 1px solid rgba(7, 24, 52, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #13315c;
}

.walks-storefront-details {
  position: absolute;
  right: clamp(1.1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2vw, 1.55rem);
  z-index: 18;
  display: grid;
  grid-template-columns: minmax(18rem, 1.15fr) minmax(12rem, 0.85fr);
  gap: clamp(0.65rem, 1vw, 0.85rem);
  width: min(43rem, calc(100% - clamp(2rem, 6vw, 6rem)));
  min-height: 0;
}

.walks-storefront-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.68);
  color: #10213c;
  box-shadow: 0 1rem 2.5rem rgba(18, 38, 63, 0.14);
  backdrop-filter: blur(16px) saturate(1.2);
}

.walks-storefront-route-card {
  display: grid;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(9.75rem, 1fr) auto;
  min-height: 16rem;
}

.walks-storefront-route-label {
  margin: 0;
  padding: 0.8rem 0.9rem 0.55rem;
}

.walks-storefront-mini-map {
  position: relative;
  min-height: 9.75rem;
  overflow: hidden;
  background: #dce6ef;
}

.walks-storefront-mini-map.has-maplibre-preview {
  pointer-events: none;
}

.walks-storefront-mini-map.maplibregl-map,
.walks-storefront-mini-map.has-maplibre-preview {
  font-family: inherit;
}

.walks-storefront-mini-map .maplibregl-ctrl-attrib {
  border-radius: 0.45rem 0 0 0;
  background: rgba(255, 255, 255, 0.78);
  color: #344661;
  font-size: 0.52rem;
  line-height: 1.2;
}

.walks-route-mini-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.walks-route-mini-bg {
  fill: #eef3f9;
}

.walks-route-mini-path-shadow {
  fill: none;
  stroke: rgba(7, 24, 52, 0.12);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.walks-route-mini-path {
  fill: none;
  stroke: #2e6bd3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.walks-route-mini-stop {
  fill: #ffffff;
  stroke: #2e6bd3;
  stroke-width: 2;
}

.walks-route-mini-stop.is-start {
  fill: #071834;
  stroke: #94d9ce;
}

.walks-storefront-route-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 4.15rem;
  background: rgba(255, 255, 255, 0.72);
}

.walks-storefront-route-metrics div {
  display: grid;
  gap: 0.18rem;
  padding: 0.7rem;
  text-align: center;
}

.walks-storefront-route-metrics div + div {
  border-left: 1px solid rgba(13, 27, 57, 0.09);
}

.walks-storefront-route-metrics strong {
  color: #071834;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1;
}

.walks-storefront-route-metrics span,
.walks-storefront-glance-card dt {
  color: #5b6a82;
  font-size: 0.72rem;
  font-weight: 800;
}

.walks-storefront-card-label {
  margin: 0 0 0.5rem;
  color: #071834;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.walks-storefront-glance-card,
.walks-storefront-see-card {
  padding: 0.85rem 1rem;
}

.walks-storefront-glance-card {
  align-self: start;
}

.walks-storefront-see-card {
  align-self: stretch;
}

.walks-storefront-glance-card dl {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.walks-storefront-glance-card div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.walks-storefront-glance-card dd {
  margin: 0;
  color: #10213c;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
}

.walks-storefront-see-card ol {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #10213c;
  font-size: 0.78rem;
  font-weight: 800;
}

.walks-route-stop-more {
  color: #2e6bd3;
}

.walks-storefront-mobile-actions {
  display: none;
}

.walks-storefront-controls {
  position: absolute;
  top: clamp(1.4rem, 2.6vw, 2rem);
  right: clamp(1.2rem, 3vw, 2.5rem);
  z-index: 25;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 52, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.9rem 2.2rem rgba(18, 38, 63, 0.13);
  backdrop-filter: blur(14px);
}

.walks-storefront-control {
  min-height: 2.75rem;
  border: 0;
  background: transparent;
  color: #071834;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0.55rem 0.95rem;
}

.walks-storefront-control:hover,
.walks-storefront-control:focus-visible {
  background: rgba(7, 24, 52, 0.08);
}

.walks-storefront-dots {
  position: absolute;
  z-index: 24;
  right: clamp(1.3rem, 3vw, 2.7rem);
  top: clamp(5.2rem, 8.4vw, 5.9rem);
  bottom: auto;
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 24, 52, 0.36);
  backdrop-filter: blur(12px);
}

.walks-storefront-dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  padding: 0;
}

.walks-storefront-dot.is-active {
  background: #ffffff;
}

.walks-storefront-more {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.75rem clamp(0.85rem, 2.2vw, 1.7rem) 0.9rem;
}

.walks-storefront-more h2 {
  margin: 0;
  color: #071834;
  font-size: 0.9rem;
  font-weight: 900;
}

.walks-storefront-more-list {
  display: grid;
  grid-auto-columns: minmax(11rem, 1fr);
  grid-auto-flow: column;
  gap: 0.7rem;
  min-width: 0;
}

.walks-storefront-more-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(13, 27, 57, 0.09);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.86);
  color: #10213c;
  padding: 0.45rem;
  text-align: left;
  box-shadow: 0 0.7rem 1.5rem rgba(18, 38, 63, 0.06);
}

.walks-storefront-more-card.is-active {
  border-color: rgba(46, 107, 211, 0.62);
  box-shadow: 0 0 0 0.18rem rgba(46, 107, 211, 0.12);
}

.walks-storefront-more-card img {
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  border-radius: 0.55rem;
  object-fit: cover;
}

.walks-storefront-more-card span {
  min-width: 0;
}

.walks-storefront-more-card strong,
.walks-storefront-more-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.walks-storefront-more-card strong {
  color: #071834;
  font-size: 0.78rem;
  font-weight: 900;
}

.walks-storefront-more-card small {
  color: #5b6a82;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.walks-storefront-message,
.walks-tour-message {
  border: 1px solid var(--walks-line);
  border-radius: 1rem;
  background: var(--walks-panel);
  color: var(--walks-ink);
  padding: 0.85rem 1rem;
  box-shadow: var(--walks-shadow);
}

.walks-storefront-message {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 40;
  max-width: 28rem;
}

.walks-app-shell {
  position: relative;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--walks-bg);
}

.walks-map-stage {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.walks-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #dce8df;
}

.walks-map-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  margin: 0;
  color: #14231e;
  font-weight: 900;
}

.walks-map.leaflet-container {
  font-family: inherit;
}

.walks-map .leaflet-control-attribution {
  font-size: 0.72rem;
}

.walks-map .leaflet-popup-content-wrapper,
.walks-map .leaflet-popup-tip {
  background: #fffaf1;
  color: #17231f;
}

.walks-map.maplibregl-map {
  font-family: inherit;
}

.walks-map .maplibregl-ctrl-attrib {
  max-width: min(42rem, 72vw);
  margin: 0 !important;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.86);
  color: #17231f;
  font-family: inherit;
  font-size: 0.72rem;
  line-height: 1.15;
  text-align: right;
  white-space: normal;
}

.walks-map .maplibregl-ctrl-bottom-right {
  right: max(0.65rem, env(safe-area-inset-right));
  bottom: calc(var(--aw-map-bottom-reserve, 5rem) + 0.35rem);
  left: auto;
  display: flex;
  max-width: min(42rem, 72vw);
  justify-content: flex-end;
}

.walks-map .maplibregl-popup-content {
  border-radius: 0.75rem;
  background: #fffaf1;
  color: #17231f;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.28);
}

.walks-map .maplibregl-popup-tip {
  border-top-color: #fffaf1;
}

.walks-maplibre-stop-marker {
  position: relative;
  display: grid;
  width: 0.72rem;
  height: 0.72rem;
  place-items: center;
  border: 1.5px solid #1d1812;
  border-radius: 999px;
  background: #8ad3cc;
  box-shadow: 0 0.12rem 0.32rem rgba(0, 0, 0, 0.34);
  cursor: pointer;
  padding: 0;
}

.walks-maplibre-stop-marker.is-browse-only {
  background: #c98b4a;
}

.walks-maplibre-stop-marker.is-visited::after {
  content: "✓";
  position: absolute;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 2px solid #07110d;
  border-radius: 999px;
  background: var(--walks-teal);
  color: #07110d;
  box-shadow: 0 0.18rem 0.45rem rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.walks-maplibre-stop-marker:focus-visible {
  outline: 3px solid rgba(255, 247, 232, 0.92);
  outline-offset: 4px;
}

.walks-app-pill,
.walks-map-badge,
.walks-status-label,
.walks-map-link {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--walks-line);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.1);
  color: var(--walks-ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.walks-app-pill {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.walks-app-pill:hover,
.walks-map-link:hover {
  border-color: var(--walks-teal);
  background: var(--walks-teal-deep);
  color: var(--walks-ink);
}

.walks-map-badge,
.walks-status-label {
  padding: 0.42rem 0.7rem;
}

.walks-status-label[data-status="visible"],
.walks-status-label[data-status="current"],
.walks-status-label[data-status="visited"] {
  border-color: rgba(148, 217, 206, 0.6);
  background: rgba(148, 217, 206, 0.18);
}

.walks-status-label[data-status="indoor"],
.walks-status-label[data-status="temporarily_off_view"],
.walks-status-label[data-status="awaiting_placement"],
.walks-status-label[data-status="at_groomers"],
.walks-status-label[data-status="moved"] {
  border-color: rgba(209, 147, 102, 0.7);
  background: rgba(209, 147, 102, 0.16);
}

.route-albany-walks .walks-tour-message {
  position: absolute;
  top: 5.75rem;
  right: 1rem;
  left: 1rem;
  z-index: 520;
  margin-inline: auto;
  max-width: 32rem;
}

.walks-tour-message:empty {
  display: none;
}

.walks-direction-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 760;
  display: flex;
  width: auto;
  min-height: calc(4rem + env(safe-area-inset-top));
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: calc(0.68rem + env(safe-area-inset-top)) 0.95rem 0.68rem;
  border-bottom: 1px solid rgba(255, 247, 232, 0.16);
  background: rgba(16, 23, 19, 0.95);
  box-shadow: 0 0.9rem 1.4rem rgba(0, 0, 0, 0.18);
  color: var(--walks-ink);
  backdrop-filter: blur(18px);
}

.walks-direction-bar[hidden],
.walks-app-shell[data-waypoint-overlay="open"] .walks-direction-bar {
  display: none;
}

.walks-direction-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.walks-direction-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(148, 217, 206, 0.42);
  border-radius: 0.85rem;
  background: rgba(148, 217, 206, 0.16);
  color: var(--walks-teal);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0.05rem 0.25rem rgba(0, 0, 0, 0.22);
}

.walks-tabler-icon {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.walks-direction-eyebrow {
  margin: 0 0 0.18rem;
  color: var(--walks-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.walks-direction-text,
.walks-direction-meta {
  margin: 0;
}

.walks-direction-text {
  overflow: hidden;
  font-size: clamp(0.96rem, 1.4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.16;
  text-overflow: ellipsis;
}

.walks-direction-meta {
  margin-top: 0.12rem;
  color: var(--walks-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.walks-direction-meta:empty {
  display: none;
}

.walks-direction-voice {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 247, 232, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.09);
  color: var(--walks-ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.walks-direction-voice[aria-pressed="true"] {
  border-color: rgba(148, 217, 206, 0.75);
  background: rgba(148, 217, 206, 0.22);
}

.walks-direction-voice:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.walks-follow-control {
  position: absolute;
  right: 1rem;
  bottom: calc(var(--aw-map-bottom-reserve, 5rem) + 0.75rem);
  z-index: 745;
  min-height: 2.65rem;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgba(255, 247, 232, 0.2);
  border-radius: 999px;
  background: rgba(16, 23, 19, 0.95);
  color: var(--walks-ink);
  box-shadow: 0 0.85rem 1.45rem rgba(0, 0, 0, 0.22);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.walks-follow-control:hover,
.walks-follow-control:focus-visible {
  border-color: rgba(148, 217, 206, 0.72);
  background: rgba(26, 45, 39, 0.96);
  outline: none;
}

.walks-follow-control[hidden],
.walks-app-shell[data-waypoint-overlay="open"] .walks-follow-control {
  display: none;
}

html[data-theme="albany-walks"][data-sbs-theme="light"] .walks-direction-bar,
html[data-theme="albany-walks"][data-sbs-theme="light"] .walks-follow-control,
html[data-theme="albany-walks"][data-sbs-theme="light"] .walks-mobile-status-footer {
  border-color: rgba(7, 23, 45, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--walks-ink);
  box-shadow: 0 0.9rem 1.4rem rgba(26, 42, 66, 0.12);
}

html[data-theme="albany-walks"][data-sbs-theme="light"] .walks-direction-icon {
  border-color: rgba(26, 117, 109, 0.34);
  background: rgba(26, 117, 109, 0.08);
}

.walks-app-sheet {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 700;
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  max-height: min(calc(100% - 2rem), 72dvh, 40rem);
  margin-inline: auto;
  overflow: auto;
  padding: 1rem;
  border: 1px solid var(--walks-line);
  border-radius: 1rem;
  background: rgba(20, 31, 27, 0.96);
  box-shadow: var(--walks-shadow);
  backdrop-filter: blur(16px);
}

.walks-app-sheet[hidden] {
  display: none;
}

.walks-sheet-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--walks-line);
  background: rgba(20, 31, 27, 0.96);
}

.walks-sheet-header h2 {
  margin: 0.15rem 0 0;
  color: var(--walks-ink);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
}

.walks-icon-button,
.walks-stop-button {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--walks-line);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.08);
  color: var(--walks-ink);
  font-size: 0.84rem;
  font-weight: 900;
  padding: 0.38rem 0.66rem;
}

.walks-icon-button:hover,
.walks-stop-button:hover,
.walks-icon-button:focus-visible,
.walks-stop-button:focus-visible {
  border-color: var(--walks-teal);
  background: var(--walks-teal-deep);
}

.walks-stop-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.walks-stop-button-primary {
  border-color: transparent;
  background: var(--walks-teal);
  color: #08100d;
}

.walks-stop-button-muted {
  color: var(--walks-muted);
}

.walks-bottom-bar {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: var(--aw-map-bottom-reserve, 5rem);
  z-index: 760;
  display: flex;
  justify-content: flex-end;
  padding: 0 0.9rem 0.7rem;
  background: linear-gradient(0deg, rgba(8, 16, 13, 0.42), rgba(8, 16, 13, 0));
}

.walks-dev-tools {
  pointer-events: auto;
  min-width: 0;
  max-width: min(64rem, calc(100vw - 1.8rem));
  border: 1px solid var(--walks-line);
  border-radius: 1rem;
  background: rgba(16, 23, 19, 0.9);
  box-shadow: var(--walks-shadow);
  backdrop-filter: blur(18px);
}

.walks-dev-tools:not([open]) {
  width: auto;
}

.walks-dev-tools[open] {
  width: min(76rem, calc(100vw - 1.8rem));
}

.walks-progress-status,
.walks-route-status,
.walks-route-diagnostics,
.walks-sheet-copy p,
.walks-list-status,
.walks-stop-card p,
.walks-popup p,
.walks-compact-note {
  margin: 0;
  color: var(--walks-muted);
  font-weight: 700;
  line-height: 1.55;
}

.walks-progress-status,
.walks-route-status {
  color: var(--walks-ink);
  font-size: 0.8rem;
  line-height: 1.35;
}

.walks-progress-count,
.walks-route-diagnostics,
.walks-speed-pill {
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--walks-line);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.08);
  color: var(--walks-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.38rem 0.62rem;
}

.walks-progress-actions,
.walks-route-actions,
.walks-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.walks-route-actions {
  align-items: center;
}

.walks-dev-tools {
  padding: 0;
}

.walks-dev-tools summary {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  color: var(--walks-ink);
  font-weight: 900;
  list-style: none;
}

.walks-dev-tools summary::-webkit-details-marker {
  display: none;
}

.walks-dev-tools summary::before {
  content: "+";
  color: var(--walks-teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.walks-dev-tools[open] summary {
  border-bottom: 1px solid var(--walks-line);
}

.walks-dev-tools[open] summary::before {
  content: "-";
}

.walks-dev-tools-inner {
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(12rem, 0.75fr) minmax(0, 2fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem;
}

.walks-bottom-status {
  min-width: 0;
}

.walks-route-diagnostics {
  grid-column: 1 / -1;
}

.walks-route-diagnostics:empty {
  display: none;
}

.walks-route-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--walks-ink);
  font-weight: 900;
}

.walks-route-toggle small {
  display: block;
  color: var(--walks-muted);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
}

.walks-route-empty {
  padding: 0.85rem;
  border: 1px solid var(--walks-line);
  border-radius: 0.85rem;
  background: rgba(255, 247, 232, 0.07);
  color: var(--walks-muted);
  font-weight: 800;
}

.walks-stop-list,
.walks-route-list,
.walks-sheet-copy {
  display: grid;
  gap: 0.85rem;
}

.walks-route-list {
  margin: 0;
  padding-left: 1.25rem;
}

.walks-route-list li {
  color: var(--walks-ink);
  font-weight: 900;
}

.walks-route-leg {
  display: block;
  color: var(--walks-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.walks-stop-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid var(--walks-line);
  border-radius: 1rem;
  background: rgba(255, 247, 232, 0.06);
}

.walks-stop-card.is-current {
  border-color: rgba(148, 217, 206, 0.7);
  background: rgba(148, 217, 206, 0.13);
}

.walks-stop-card.is-visited:not(.is-current) {
  background: rgba(255, 247, 232, 0.1);
}

.walks-stop-card h3,
.walks-popup h3 {
  margin: 0;
  color: var(--walks-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.walks-popup h3,
.walks-popup p,
.walks-popup .walks-stop-detail strong {
  color: #17231f;
}

.walks-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.walks-stop-detail {
  color: var(--walks-muted);
}

.walks-stop-detail strong {
  color: var(--walks-ink);
}

.walks-compact-note {
  padding: 0.7rem;
  border: 1px solid var(--walks-line);
  border-radius: 0.75rem;
  background: rgba(255, 247, 232, 0.07);
}

.walks-map-link {
  min-height: 2.4rem;
  padding: 0.55rem 0.8rem;
}

.walks-popup {
  max-width: 18rem;
}

.walks-popup-footnote {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(23, 35, 31, 0.18);
  color: #17231f;
  font-weight: 800;
}

.walks-visited-check {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 2px solid #07110d;
  border-radius: 999px;
  background: var(--walks-teal);
  color: #07110d;
  box-shadow: 0 0.18rem 0.45rem rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.walks-visited-check::before {
  display: none;
}

.walks-waypoint-overlay {
  position: absolute;
  inset: 0;
  z-index: 900;
  display: grid;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(6, 11, 9, 0.96), rgba(9, 17, 14, 0.9)),
    rgba(6, 11, 9, 0.92);
  backdrop-filter: blur(10px);
}

.walks-waypoint-overlay[hidden] {
  display: none;
}

.walks-waypoint-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(148, 217, 206, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(18, 27, 23, 0.99), rgba(11, 18, 15, 0.98));
  box-shadow: none;
}

.walks-waypoint-header,
.walks-waypoint-scroll,
.walks-waypoint-actions {
  box-sizing: border-box;
}

.walks-waypoint-header,
.walks-waypoint-actions {
  padding-inline: clamp(1rem, 5vw, 4rem);
  background: rgba(18, 27, 23, 0.92);
}

.walks-waypoint-header {
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(0.85rem, 2vw, 1.25rem);
  border-bottom: 1px solid var(--walks-line);
}

.walks-waypoint-header h2 {
  max-width: min(100%, 62rem);
  margin: 0.2rem 0 0;
  color: var(--walks-ink);
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.walks-waypoint-scroll {
  width: min(100%, 62rem);
  min-height: 0;
  margin-inline: auto;
  overflow: auto;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 5vw, 4rem);
  overscroll-behavior: contain;
}

.walks-waypoint-meta,
.walks-waypoint-copy p,
.walks-waypoint-facts {
  margin: 0;
  color: var(--walks-muted);
  font-weight: 800;
  line-height: 1.6;
}

.walks-waypoint-copy {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.walks-waypoint-facts {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.45rem 0.8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--walks-line);
}

.walks-waypoint-facts:empty {
  display: none;
}

.walks-waypoint-facts dt {
  color: var(--walks-ink);
  font-weight: 900;
}

.walks-waypoint-facts dd {
  min-width: 0;
  margin: 0;
}

.walks-waypoint-actions {
  display: flex;
  justify-content: center;
  padding-top: clamp(0.75rem, 2vw, 1rem);
  padding-bottom: max(clamp(0.9rem, 2vw, 1.35rem), env(safe-area-inset-bottom));
  border-top: 1px solid var(--walks-line);
}

.walks-waypoint-back {
  display: flex;
  width: min(100%, 28rem);
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--walks-teal);
  color: #07110d;
  font-weight: 900;
}

.walks-waypoint-back:focus-visible {
  outline: 3px solid rgba(255, 247, 232, 0.85);
  outline-offset: 3px;
}

.walks-user-location-marker {
  display: grid;
  width: 3rem !important;
  height: 3rem !important;
  place-items: center;
  margin-left: -1.5rem !important;
  margin-top: -1.5rem !important;
  border: 0;
  background: transparent;
  pointer-events: none;
  filter:
    drop-shadow(0 0 0.18rem rgba(255, 247, 232, 0.98))
    drop-shadow(0 0.22rem 0.32rem rgba(0, 0, 0, 0.62));
  transition: transform 260ms linear;
  will-change: transform;
}

.maplibregl-marker.walks-user-location-marker {
  margin-left: 0 !important;
  margin-top: 0 !important;
}

.walks-user-location-arrow {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  transform: rotate(var(--walks-heading, 0deg));
  transform-origin: 50% 50%;
  transition: transform 420ms ease-out;
}

@media (max-width: 767.98px) {
  .walks-nav {
    gap: 0.55rem;
    min-height: 4rem;
    padding-inline: 0.75rem;
  }

  .walks-brand span:last-child {
    max-width: 11rem;
    font-size: 0.9rem;
  }

  .walks-brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .walks-nav-status {
    display: none;
  }

  .walks-storefront {
    grid-template-rows: auto minmax(0, 1fr);
    background: #fff;
  }

  .walks-storefront-header {
    gap: 0.6rem;
    min-height: 5.1rem;
    padding: 0.85rem 5.75rem 0.85rem 1.15rem;
    overflow: hidden;
    position: relative;
  }

  .walks-storefront-brand {
    min-width: 0;
    gap: 0.65rem;
    font-size: clamp(0.95rem, 5vw, 1.1rem);
  }

  .walks-storefront-brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    flex: 0 0 auto;
  }

  .walks-storefront-header-count {
    position: absolute;
    top: 50%;
    right: 1.1rem;
    transform: translateY(-50%);
    min-width: 3.55rem;
    flex: 0 0 auto;
    padding: 0.38rem 0.65rem;
    font-size: 0.88rem;
  }

  .walks-storefront-frame {
    padding: 0;
  }

  .walks-storefront-stage {
    height: 100%;
  }

  .walks-storefront-slide {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0;
    min-height: 0;
    transform: translateX(0.7rem);
  }

  .walks-storefront-hero {
    position: relative;
    inset: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .walks-storefront-image-wash {
    background:
      linear-gradient(180deg, rgba(7, 24, 52, 0.02) 26%, rgba(7, 24, 52, 0.32) 57%, rgba(7, 24, 52, 0.88) 100%);
  }

  .walks-storefront-copy {
    top: auto;
    right: 2rem;
    bottom: 3.15rem;
    left: 1.25rem;
    width: auto;
    color: #fff;
    text-shadow: 0 0.25rem 0.55rem rgba(0, 0, 0, 0.55);
  }

  .walks-storefront-pill {
    background: rgba(46, 107, 211, 0.72);
    color: #fff;
  }

  .walks-storefront-copy h1 {
    max-width: 100%;
    color: #fff;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .walks-storefront-copy p:not(.walks-storefront-pill) {
    max-width: 100%;
    color: #fff;
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .walks-storefront-actions {
    display: none;
  }

  .walks-storefront-details {
    position: static;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    min-height: 0;
    padding: 0.85rem 2rem max(1rem, env(safe-area-inset-bottom)) 1rem;
    background: #fff;
  }

  .walks-storefront-route-card {
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .walks-storefront-route-label,
  .walks-storefront-mini-map,
  .walks-storefront-glance-card,
  .walks-storefront-see-card {
    display: none;
  }

  .walks-storefront-route-metrics {
    min-height: 4.3rem;
    border: 1px solid rgba(13, 27, 57, 0.08);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 0.75rem 1.7rem rgba(18, 38, 63, 0.07);
  }

  .walks-storefront-route-metrics div {
    padding: 0.55rem 0.45rem;
  }

  .walks-storefront-route-metrics strong {
    font-size: clamp(1.15rem, 5.5vw, 1.55rem);
  }

  .walks-storefront-mobile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .walks-storefront-mobile-action {
    min-height: 3.4rem;
    border-radius: 0.85rem;
    font-size: 1.05rem;
  }

  .walks-storefront-controls {
    display: none;
  }

  .walks-storefront-dots {
    right: 2rem;
    top: auto;
    bottom: 1rem;
    background: rgba(7, 24, 52, 0.28);
  }

  .walks-storefront-more {
    display: none;
  }

  .route-albany-walks .walks-tour-message {
    top: 5.25rem;
  }

  .walks-direction-bar {
    top: 0;
    right: 0;
    left: 0;
    width: auto;
    min-height: calc(3.65rem + env(safe-area-inset-top));
    gap: 0.54rem;
    padding: calc(0.56rem + env(safe-area-inset-top)) 0.62rem 0.56rem;
    border-radius: 0;
  }

  .walks-direction-icon {
    width: 2.28rem;
    height: 2.28rem;
    border-radius: 0.68rem;
    font-size: 1.24rem;
  }

  .walks-direction-eyebrow {
    font-size: 0.56rem;
  }

  .walks-direction-text {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.9rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .walks-direction-meta {
    font-size: 0.66rem;
  }

  .walks-direction-voice {
    min-height: 2.35rem;
    padding: 0.46rem 0.62rem;
    font-size: 0.72rem;
  }

  .walks-follow-control {
    right: 0.75rem;
    bottom: calc(var(--aw-map-bottom-reserve, 5rem) + 0.55rem);
    min-height: 2.35rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.74rem;
  }

  .walks-bottom-bar {
    display: none;
  }

  .walks-mobile-status-footer {
    min-height: calc(3.2rem + env(safe-area-inset-bottom));
    gap: 0.7rem;
    padding: 0.62rem 0.8rem calc(0.62rem + env(safe-area-inset-bottom));
  }

  .walks-mobile-status-text {
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .walks-mobile-status-count {
    padding: 0.32rem 0.52rem;
    font-size: 0.68rem;
  }

  .walks-waypoint-overlay {
    padding: 0;
  }

  .walks-waypoint-panel {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }

  .walks-waypoint-header,
  .walks-waypoint-actions {
    padding-inline: 1rem;
  }

  .walks-waypoint-header h2 {
    font-size: clamp(1.75rem, 9vw, 3rem);
  }

  .walks-waypoint-scroll {
    padding-inline: 1rem;
  }

  .walks-waypoint-facts {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .walks-dev-tools,
  .walks-dev-tools[open] {
    width: 100%;
    max-width: none;
  }

  .walks-dev-tools-inner {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .walks-stop-button {
    flex: 1 1 auto;
    min-width: 5rem;
  }
}

/* Albany Walks tour picker: image-first hero and lazy map preview modal. */
.walks-storefront [hidden],
.walks-map-modal[hidden] {
  display: none !important;
}

.walks-storefront-frame {
  padding: clamp(0.6rem, 1.2vw, 1rem) clamp(0.75rem, 1.7vw, 1.35rem) 0;
}

.walks-storefront-stage {
  border-radius: 1.15rem;
}

.walks-storefront-slide {
  display: block;
}

@media (min-width: 768px) {
  .walks-storefront-image {
    right: auto;
    width: 124%;
    max-width: none;
    object-position: right 28%;
  }
}

.walks-storefront-image-wash {
  background:
    linear-gradient(90deg, rgba(5, 15, 31, 0.84) 0%, rgba(8, 21, 38, 0.68) 27%, rgba(8, 21, 38, 0.18) 54%, rgba(8, 21, 38, 0.02) 82%),
    linear-gradient(180deg, rgba(5, 15, 31, 0.05), rgba(5, 15, 31, 0.34));
}

.walks-storefront-copy {
  top: auto;
  bottom: clamp(1.55rem, 3.3vw, 3.1rem);
  left: clamp(1.2rem, 4vw, 3.4rem);
  width: min(41rem, 48%);
  color: #fff;
  padding-top: clamp(1.15rem, 2.3vw, 2.35rem);
  text-shadow: 0 0.22rem 0.65rem rgba(0, 0, 0, 0.5);
}

.walks-storefront-copy h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(3.1rem, 6.2vw, 6.5rem);
}

.walks-storefront-copy p:not(.walks-storefront-pill) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
}

.walks-storefront-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.walks-storefront-read-more {
  display: inline;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  text-shadow: inherit;
}

.walks-storefront-read-more:hover,
.walks-storefront-read-more:focus-visible {
  color: #ccfff7;
  outline: none;
}

.walks-storefront-pill {
  background: rgba(148, 217, 206, 0.18);
  color: #ccfff7;
  box-shadow: inset 0 0 0 1px rgba(204, 255, 247, 0.18);
}

.walks-storefront-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin: 0.2rem 0 0;
}

.walks-storefront-stats div {
  min-width: 5.2rem;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: rgba(5, 15, 31, 0.38);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.walks-storefront-stats dt,
.walks-storefront-stats dd {
  margin: 0;
}

.walks-storefront-stats dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.walks-storefront-stats dd {
  color: #fff;
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
  font-weight: 900;
  line-height: 1.15;
}

.walks-storefront-actions {
  margin-top: 0.25rem;
}

.walks-storefront-action {
  border: 0;
  cursor: pointer;
  text-shadow: none;
}

.walks-storefront-action-primary {
  background: #ffffff;
  color: #071834;
}

.walks-storefront-action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(12px);
}

.walks-storefront-action:hover,
.walks-storefront-action:focus-visible,
.walks-start-fallback button:hover,
.walks-start-fallback button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 0.2rem rgba(148, 217, 206, 0.28);
}

.walks-storefront.no-walk-capability [data-start-walk] {
  display: none !important;
}

.walks-start-fallback {
  display: none;
  gap: 0.6rem;
  max-width: 30rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  background: rgba(5, 15, 31, 0.46);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
  backdrop-filter: blur(14px);
}

.walks-start-fallback:not([hidden]) {
  display: none;
}

.walks-start-fallback p {
  margin: 0;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.walks-start-fallback div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.walks-start-fallback button {
  min-height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 900;
  padding: 0.45rem 0.8rem;
}

.walks-storefront-controls {
  gap: 0.55rem;
  align-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

@media (min-width: 768px) {
  .walks-storefront-header-count {
    display: none;
  }
}

.walks-storefront-control,
.walks-storefront-control-count {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 15, 31, 0.42);
  color: #fff;
  box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.walks-storefront-control-arrow {
  width: 2.6rem;
  border-radius: 999px;
  font-size: 1.55rem;
  line-height: 1;
  padding: 0 0 0.12rem;
}

.walks-storefront-control-count {
  min-width: 4.3rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.walks-storefront-control:hover,
.walks-storefront-control:focus-visible {
  background: rgba(5, 15, 31, 0.62);
  color: #fff;
}

.walks-storefront-dots {
  right: clamp(1.4rem, 3vw, 2.5rem);
  top: auto;
  bottom: clamp(1.45rem, 2.8vw, 2rem);
}

.walks-storefront-more {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.5rem;
  padding-top: 0.65rem;
}

.walks-storefront-more-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-flow: initial;
  grid-auto-columns: initial;
}

.walks-storefront-more-card {
  border-color: rgba(13, 27, 57, 0.08);
}

.walks-map-modal,
.walks-copy-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: rgba(4, 10, 18, 0.72);
  backdrop-filter: blur(14px);
}

.walks-map-modal-panel,
.walks-copy-modal-panel {
  display: grid;
  width: min(100%, 68rem);
  height: min(86dvh, 46rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.1rem;
  background: #f7f9fc;
  color: #071834;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.38);
}

.walks-map-modal-panel {
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.walks-copy-modal-panel {
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 42rem);
}

.walks-map-modal-header,
.walks-map-modal-footer,
.walks-copy-modal-header,
.walks-copy-modal-footer {
  background: rgba(255, 255, 255, 0.94);
}

.walks-map-modal-header,
.walks-copy-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid rgba(13, 27, 57, 0.09);
}

.walks-map-modal-eyebrow,
.walks-copy-modal-eyebrow {
  margin: 0;
  color: #2e6bd3;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.walks-map-modal-header h2,
.walks-copy-modal-header h2 {
  margin: 0.2rem 0 0;
  color: #071834;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.walks-map-modal-close,
.walks-copy-modal-close {
  min-height: 2.4rem;
  border: 1px solid rgba(13, 27, 57, 0.1);
  border-radius: 999px;
  background: #071834;
  color: #fff;
  font-weight: 900;
  padding: 0.45rem 0.85rem;
}

.walks-copy-modal-scroll {
  min-height: 0;
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.98), rgba(237, 243, 249, 0.98));
}

.walks-copy-modal-scroll p {
  margin: 0;
  color: #17233c;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.55;
}

.walks-copy-modal-scroll p + p {
  margin-top: 1rem;
}

.walks-copy-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem clamp(1rem, 3vw, 1.45rem) max(0.85rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(13, 27, 57, 0.09);
}

.walks-copy-modal-back {
  min-height: 3rem;
  border: 0;
  border-radius: 999px;
  background: #071834;
  color: #fff;
  font-weight: 900;
  padding: 0.6rem 1.2rem;
}

.walks-copy-modal-back:focus-visible,
.walks-copy-modal-close:focus-visible {
  outline: 3px solid rgba(46, 107, 211, 0.32);
  outline-offset: 2px;
}

.walks-map-modal-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(13, 27, 57, 0.09);
  background: #fff;
}

.walks-map-modal-summary div {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
  padding: 0.7rem 1rem;
}

.walks-map-modal-summary div + div {
  border-left: 1px solid rgba(13, 27, 57, 0.08);
}

.walks-map-modal-summary span {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.walks-map-modal-summary strong {
  overflow: hidden;
  color: #071834;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.walks-map-modal-map {
  min-height: 0;
  background: #dce6ef;
}

.walks-map-modal-map p {
  display: grid;
  height: 100%;
  place-items: center;
  margin: 0;
  color: #10213c;
  font-weight: 900;
  text-align: center;
}

.walks-map-modal-map.maplibregl-map,
.walks-map-modal-map.has-maplibre-preview {
  font-family: inherit;
}

.walks-map-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 1rem max(0.72rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(13, 27, 57, 0.09);
}

.walks-map-modal-footer p {
  margin: 0;
  color: #526178;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.walks-map-modal-start {
  display: inline-flex;
  min-height: 2.55rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #071834;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.6rem 1rem;
}

.walks-map-modal-start:hover,
.walks-map-modal-start:focus-visible {
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 215, 0.22);
}

.walks-route-preview-marker {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid #124e57;
  border-radius: 999px;
  background: #94d9ce;
  box-shadow: 0 0.08rem 0.18rem rgba(7, 24, 52, 0.32);
  cursor: pointer;
  padding: 0;
}

.walks-route-preview-marker.is-start {
  width: 0.9rem;
  height: 0.9rem;
  border-color: #071834;
  background: #071834;
}

.walks-route-preview-marker:focus-visible {
  outline: 3px solid rgba(37, 99, 215, 0.32);
  outline-offset: 2px;
}

.walks-map-modal-map .maplibregl-ctrl-top-left {
  top: 0.75rem;
  left: 0.75rem;
}

.walks-map-modal-map .maplibregl-ctrl-group {
  overflow: hidden;
  border-radius: 0.65rem;
  box-shadow: 0 0.5rem 1.25rem rgba(7, 24, 52, 0.16);
}

.walks-map-modal-map .maplibregl-ctrl-attrib {
  font-size: 0.62rem;
}

@media (max-width: 767.98px) {
  .route-albany-walks,
  .route-albany-walks-start,
  .route-albany-walks .walks-page,
  .route-albany-walks-start .walks-page,
  .walks-app-shell,
  .walks-map-stage,
  .walks-storefront {
    height: 100svh;
    height: 100dvh;
    height: var(--aw-visual-height, 100dvh);
    max-height: var(--aw-visual-height, 100dvh);
    min-height: 0;
  }

  .walks-storefront-header {
    min-height: 3.65rem;
    padding: 0.55rem 0.9rem;
  }

  .walks-storefront-brand {
    gap: 0.55rem;
    font-size: clamp(0.95rem, 4.8vw, 1.12rem);
    letter-spacing: 0.12em;
  }

  .walks-storefront-brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.65rem;
  }

  .walks-storefront-header-count {
    display: none;
  }

  .walks-storefront-frame {
    padding: 0;
  }

  .walks-storefront-stage {
    border-radius: 0;
  }

  .walks-storefront-slide {
    display: block;
  }

  .walks-storefront-hero {
    position: absolute;
    inset: 0;
    border-radius: 0;
  }

  .walks-storefront-image-wash {
    background:
      linear-gradient(180deg, rgba(7, 24, 52, 0.02) 16%, rgba(7, 24, 52, 0.24) 46%, rgba(7, 24, 52, 0.92) 100%);
  }

  .walks-storefront-image {
    right: 0;
    width: 100%;
    object-position: center center;
  }

  .walks-storefront-copy {
    right: 1rem;
    bottom: max(0.72rem, env(safe-area-inset-bottom));
    left: 1rem;
    width: min(340px, calc(var(--aw-visual-width, 100vw) - 2rem), calc(100vw - 2rem));
    max-width: min(340px, calc(var(--aw-visual-width, 100vw) - 2rem), calc(100vw - 2rem));
    gap: 0.46rem;
    box-sizing: border-box;
    padding-top: 0;
  }

  .walks-storefront-copy h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 10.6vw, 3.35rem);
    line-height: 0.94;
  }

  .walks-storefront-copy p:not(.walks-storefront-pill) {
    display: block;
    overflow: visible;
    font-size: clamp(0.92rem, 4vw, 1.04rem);
    line-height: 1.28;
    -webkit-line-clamp: initial;
  }

  .walks-storefront-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 0.34rem;
    margin-top: 0.05rem;
  }

  .walks-storefront-area-stat {
    display: none;
  }

  .walks-storefront-stats div {
    min-width: 0;
    overflow: hidden;
    padding: 0.42rem 0.36rem;
    border-radius: 0.62rem;
    text-align: center;
  }

  .walks-storefront-stats dt {
    font-size: 0.56rem;
  }

  .walks-storefront-stats dd {
    font-size: clamp(0.9rem, 4vw, 1.12rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .walks-storefront-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, calc(var(--aw-visual-width, 100vw) - 2rem));
    max-width: 100%;
    gap: 0.55rem;
  }

  .walks-storefront.no-walk-capability .walks-storefront-actions {
    grid-template-columns: 1fr;
  }

  .walks-start-fallback:not([hidden]) {
    display: grid;
  }

  .walks-storefront-action {
    min-width: 0;
    min-height: 2.82rem;
    border-radius: 0.78rem;
    font-size: 0.96rem;
    overflow: hidden;
    padding-inline: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .walks-storefront-dots {
    right: 0.9rem;
    bottom: auto;
    top: 0.82rem;
  }

  .walks-map .leaflet-control-attribution {
    max-width: calc(100vw - 2rem);
    margin-right: 0.55rem !important;
    margin-bottom: calc(var(--aw-map-bottom-reserve, 6rem) + 0.35rem) !important;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.86);
    color: #17231f;
    font-size: 0.58rem;
    line-height: 1.15;
    white-space: normal;
  }

  .walks-map .maplibregl-ctrl-bottom-right {
    right: 0.55rem;
    bottom: calc(var(--aw-map-bottom-reserve, 6rem) + 0.35rem);
    max-width: calc(100vw - 1.1rem);
  }

  .walks-map .maplibregl-ctrl-attrib {
    max-width: calc(100vw - 1.1rem);
    border-radius: 0.45rem 0 0 0;
    background: rgba(255, 255, 255, 0.86);
    color: #17231f;
    font-size: 0.58rem;
    line-height: 1.15;
    text-align: right;
    white-space: normal;
  }

  .walks-mobile-status-footer {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(2.85rem + env(safe-area-inset-bottom));
    max-width: none;
    gap: 0.55rem;
    padding: 0.48rem 0.68rem calc(0.48rem + env(safe-area-inset-bottom));
    border-radius: 0;
  }

  .walks-mobile-status-text {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .walks-mobile-status-count {
    padding: 0.26rem 0.48rem;
    font-size: 0.66rem;
  }

  .walks-map-modal,
  .walks-copy-modal {
    padding: 0;
  }

  .walks-map-modal-panel,
  .walks-copy-modal-panel {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .walks-map-modal-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .walks-map-modal-summary div:nth-child(odd) {
    border-left: 0;
  }

  .walks-map-modal-summary div:nth-child(n + 3) {
    border-top: 1px solid rgba(13, 27, 57, 0.08);
  }

  .walks-copy-modal-footer {
    justify-content: stretch;
  }

  .walks-copy-modal-back {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .walks-storefront-slide,
  .walks-storefront-image {
    transition: none;
  }

  .walks-user-location-marker,
  .walks-user-location-arrow {
    transition: none;
  }
}
