:root {
  --ink: #111111;
  --paper: #f7f6f2;
  --white: #ffffff;
  --muted: #6f6e68;
  --line: #d7d5ce;
  --line-dark: #b7b5ae;
  --summer: #e9e3a4;
  --summer-soft: #f3f0ce;
  --panel: #eeede8;
  --max: 1320px;
  --font: Arial, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

html[data-season="spring"] { --summer: #dce4d4; --summer-soft: #edf1e9; }
html[data-season="summer"] { --summer: #e9e3a4; --summer-soft: #f3f0ce; }
html[data-season="autumn"] { --summer: #ddc7aa; --summer-soft: #f0e5d7; }
html[data-season="winter"] { --summer: #d6dfe3; --summer-soft: #eaf0f2; }

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--summer); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 72px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 12px max(36px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, .94);
  backdrop-filter: blur(16px);
}
.official-logo-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
}
.official-logo {
  width: 106px;
  height: auto;
}
.edition-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  letter-spacing: .16em;
  line-height: 1.25;
  text-align: center;
}
.edition-lockup span { color: var(--muted); }
.edition-lockup strong { font-size: 10px; }
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.text-button, .icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.text-button {
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.text-button span { color: var(--line-dark); }
.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.icon-button svg { width: 20px; height: 20px; }
.text-button:hover, .icon-button:hover { opacity: .62; }

.overline {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  min-height: 720px;
  padding-block: 52px 70px;
  gap: 70px;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  padding-block: 50px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(54px, 6.15vw, 94px);
  font-weight: 700;
  letter-spacing: -.07em;
  line-height: .97;
  word-break: keep-all;
}
.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: #45443f;
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -.02em;
  line-height: 1.75;
  word-break: keep-all;
}
.hero-actions, .return-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #333; }
.button-line { background: transparent; color: var(--ink); }
.button-line:hover { background: var(--white); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 52px;
  gap: 0;
}
.hero-meta div {
  display: flex;
  min-height: 62px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.hero-meta div:first-child { padding-left: 0; border-left: 0; }
.hero-meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
}
.hero-meta strong { font-size: 14px; letter-spacing: -.02em; }
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 618px;
  margin: 0;
  background: #dedcd4;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 50%;
}
.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(17, 17, 17, .88);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.summer-note {
  border-block: 1px solid var(--line);
  background: var(--summer-soft);
}
.summer-note-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 16px;
}
.summer-note p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
}
.summer-mark { width: 34px; height: 2px; background: var(--ink); }

.curation {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.05fr) minmax(340px, .95fr);
  padding-block: 140px;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.curation-heading h2, .section-heading h2, .return-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: 1.02;
  word-break: keep-all;
}
.curation-copy {
  max-width: 560px;
  padding-top: 40px;
}
.curation-copy > p {
  margin: 0;
  color: #45443f;
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1.85;
  word-break: keep-all;
}
.curation-criteria { margin: 46px 0 0; }
.curation-criteria div {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.curation-criteria div:last-child { border-bottom: 1px solid var(--line); }
.curation-criteria dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.curation-criteria dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  word-break: keep-all;
}

.route-section, .map-section, .places-section { padding-block: 140px; }
.route-section, .map-section { border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 52px; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr);
  align-items: end;
  gap: 80px;
}
.section-heading > p, .split-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}
.sync-explainer {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 22px;
  padding: 24px 28px;
  border: 1px solid var(--ink);
  background: var(--white);
}
.sync-explainer-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sync-explainer-copy span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.sync-explainer-copy strong {
  font-size: 18px;
  letter-spacing: -.025em;
  line-height: 1.35;
}
.sync-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.sync-steps li {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  padding: 10px 28px 10px 0;
}
.sync-steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
}
.sync-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}
.sync-steps li.is-source > span { background: var(--ink); color: var(--white); }
.sync-steps strong { font-size: 12px; letter-spacing: -.01em; }

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.route-card {
  position: relative;
  display: flex;
  width: 100%;
  color: inherit;
  font: inherit;
  min-height: 410px;
  flex-direction: column;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.route-card:last-child { border-right: 0; }
.route-card:hover { background: var(--white); }
.route-card.is-active {
  z-index: 1;
  background: var(--summer-soft);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.route-card:focus-visible, .filter-button:focus-visible, .view-all-button:focus-visible, .view-jump-link:focus-visible {
  outline: 3px solid var(--summer);
  outline-offset: 3px;
}
.route-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}
.route-card-top span:last-child { color: var(--muted); }
.route-card h3 {
  margin: 52px 0 16px;
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  word-break: keep-all;
}
.route-stop-list {
  display: block;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.55;
}
.route-card-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 36px;
}
.route-card-bottom span { font-size: 11px; font-weight: 700; }
.route-card-bottom svg { width: 24px; height: 24px; }
.route-card-selection {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .015em;
}
.route-card-selection i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: transparent;
  font-size: 11px;
  font-style: normal;
}
.route-card-selection.is-active { color: var(--ink); }
.route-card-selection.is-active i { background: var(--ink); color: var(--white); }

.view-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid var(--line-dark);
  background: var(--panel);
}
.view-status.has-route { border-color: var(--ink); background: var(--summer-soft); }
.view-status-main {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) minmax(220px, .55fr) minmax(280px, 1fr);
  align-items: center;
  gap: 24px;
}
.view-status-main > span,
.applied-view-copy > span,
.places-view-bar span,
.view-switcher-wrap > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.view-status-main > strong { font-size: 18px; letter-spacing: -.025em; }
.view-status-main > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; word-break: keep-all; }
.view-status-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.view-all-button, .view-jump-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.view-jump-link { background: var(--ink); color: var(--white); }
.view-all-button:hover { background: var(--white); }
.view-jump-link:hover { background: #333; }

.map-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr);
  align-items: end;
  gap: 80px;
}
.applied-view-bar {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 42px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}
.applied-view-bar.has-route { border-color: var(--ink); background: var(--summer-soft); }
.applied-view-copy { display: grid; grid-template-columns: 1fr; gap: 4px; }
.applied-view-copy strong { font-size: 20px; letter-spacing: -.03em; }
.applied-view-copy p { margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; word-break: keep-all; }
.view-switcher-wrap { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.view-switcher-wrap .filter-row { flex-wrap: nowrap; }
.applied-view-bar.is-updated, .places-view-bar.is-updated { animation: linked-update .9s ease; }
@keyframes linked-update {
  0% { box-shadow: 0 0 0 0 rgba(17,17,17,0); }
  30% { box-shadow: 0 0 0 5px rgba(233,227,164,.75); }
  100% { box-shadow: 0 0 0 0 rgba(17,17,17,0); }
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, .5fr);
  min-height: 680px;
  border: 1px solid var(--ink);
  background: var(--white);
}
.map-stage { display: flex; min-width: 0; flex-direction: column; }
.map-toolbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.map-toolbar-copy { display: flex; flex-direction: column; gap: 5px; }
.map-toolbar strong { font-size: 16px; letter-spacing: -.02em; }
.map-toolbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #3c8a58; box-shadow: 0 0 0 4px rgba(60,138,88,.12); }
.map-reset, .map-route-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.map-route-link { background: var(--ink); color: var(--white); border-color: var(--ink); }
.map-route-link[hidden] { display: none; }
.map-reset:hover { border-color: var(--ink); }
.map-route-link:hover { background: #333; }
.map-frame-wrap {
  position: relative;
  flex: 1;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(233,227,164,.25), transparent 50%),
    repeating-linear-gradient(0deg, #eeede8 0, #eeede8 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(90deg, #eeede8 0, #eeede8 1px, transparent 1px, transparent 34px),
    #f8f8f6;
}
#googleMapFrame { width: 100%; height: 100%; min-height: 540px; border: 0; background: transparent; }
.map-brand-chip {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(17,17,17,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 7px 24px rgba(0,0,0,.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  pointer-events: none;
}
.map-brand-chip img { width: 38px; height: auto; }
.map-disclaimer {
  margin: 0;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}
.place-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-left: 1px solid var(--ink);
  background: var(--paper);
}
.place-panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.place-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}
.category-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: right;
}
.place-panel h3 {
  margin: 42px 0 20px;
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -.055em;
  line-height: 1.02;
}
.mahina-note {
  margin: 0;
  color: #44433f;
  font-size: 15px;
  line-height: 1.75;
  word-break: keep-all;
}
.place-facts { margin: 36px 0 0; }
.place-facts div {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.place-facts div:last-child { border-bottom: 1px solid var(--line); }
.place-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.place-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.place-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 32px;
}
.place-actions .button { min-height: 44px; padding-inline: 12px; font-size: 11px; }
.place-actions.is-google-only { grid-template-columns: 1fr; }
.place-actions.is-google-only .source-link { grid-column: 1; }
.source-link {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 13px 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.source-link:hover { color: var(--ink); }
.place-picker { margin-top: 24px; }
.picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.picker-head > strong { font-size: 12px; letter-spacing: .02em; }
.picker-count { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.filter-button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.filter-button:hover, .filter-button.is-active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.place-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.place-tab {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.place-tab:hover, .place-tab.is-active { background: var(--summer-soft); }
.place-tab-number {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}
.place-tab.is-active .place-tab-number { background: var(--ink); color: var(--white); }
.place-tab span:last-child {
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
}

.places-view-bar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}
.places-section.has-route .places-view-bar { border-color: var(--ink); background: var(--summer-soft); }
.places-view-bar > div { display: flex; align-items: center; gap: 18px; }
.places-view-bar strong { font-size: 16px; letter-spacing: -.02em; }
.places-view-bar a { font-size: 10px; font-weight: 700; text-decoration: none; }
.places-view-bar a:hover { text-decoration: underline; }

.places-list { border-top: 1px solid var(--ink); }
.place-row {
  display: grid;
  width: 100%;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  grid-template-columns: 72px minmax(230px, .7fr) minmax(300px, 1fr) 180px;
  min-height: 200px;
  align-items: center;
  gap: 34px;
  padding: 30px 10px 30px 0;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  transition: background .2s ease, padding .2s ease;
}
.place-row:hover { padding-left: 16px; background: var(--white); }
.place-row.is-active { background: var(--summer-soft); }
.place-row.is-hidden { display: none; }
.place-row-number {
  font-size: 12px;
  font-weight: 700;
  align-self: start;
  padding-top: 8px;
}
.place-row-title small {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.place-row-title h3 {
  margin: 0;
  font-size: clamp(23px, 2.5vw, 37px);
  letter-spacing: -.05em;
  line-height: 1.08;
}
.place-row-note {
  margin: 0;
  color: #464540;
  font-size: 14px;
  line-height: 1.75;
  word-break: keep-all;
}
.place-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  text-align: right;
}
.place-row-meta span { color: var(--muted); font-size: 10px; line-height: 1.5; }
.place-row-meta strong { font-size: 11px; }
.place-row-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
}

.return-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  min-height: 720px;
  margin-bottom: 140px;
  border: 1px solid var(--ink);
  background: var(--white);
}
.return-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #ddd;
}
.return-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease; }
.return-media.is-changing img { opacity: .4; }
.return-media-count {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(17,17,17,.86);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.return-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 80px);
}
.return-copy h2 { font-size: clamp(42px, 4.7vw, 68px); }
.return-copy h3 {
  margin: 50px 0 14px;
  font-size: 22px;
  letter-spacing: -.035em;
}
.return-copy > p:not(.overline) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}
.menu-controls { display: flex; gap: 7px; margin-top: 28px; }
.menu-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
}
.menu-controls button:hover { background: var(--summer-soft); }

.site-footer { border-top: 1px solid var(--ink); background: #eceae4; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  padding-block: 70px 80px;
  gap: 90px;
}
.footer-brand img { width: 132px; height: auto; }
.footer-brand p { margin: 26px 0 0; font-size: 14px; font-weight: 700; }
.footer-info {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr .7fr;
  gap: 40px;
}
.footer-info span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}
.footer-info p, .footer-info a {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  text-decoration: none;
}
.footer-info div:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.footer-info div:last-child span { width: 100%; }
.footer-info a:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
}
.mobile-dock { display: none; }
.toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 16px;
  transform: translateY(30px);
  opacity: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 1100px) {
  .shell { width: min(calc(100% - 48px), var(--max)); }
  .site-header { padding-inline: 24px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 36px; min-height: 650px; }
  .hero-meta { padding-top: 42px; }
  .curation { grid-template-columns: 56px 1fr; }
  .curation-copy { grid-column: 2; padding-top: 10px; }
  .map-shell { grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr); }
  .place-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .place-row { grid-template-columns: 55px minmax(220px, .75fr) minmax(280px, 1fr); }
  .place-row-meta { grid-column: 2 / -1; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
  .footer-main { gap: 50px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 66px; }
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 8px 16px;
  }
  .official-logo { width: 82px; }
  .edition-lockup { display: none; }
  .text-button { padding-inline: 8px; }
  .icon-button { width: 38px; height: 38px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 36px 56px;
    gap: 36px;
  }
  .hero-copy { max-width: none; padding: 20px 0 0; }
  .hero h1 { font-size: clamp(50px, 15vw, 74px); }
  .hero-lead { margin-top: 25px; font-size: 17px; }
  .hero-actions { margin-top: 26px; }
  .hero-meta { margin-top: 45px; padding-top: 0; }
  .hero-meta div { min-height: 54px; padding-inline: 12px; }
  .hero-meta span { font-size: 8px; }
  .hero-meta strong { font-size: 11px; }
  .hero-visual { min-height: 440px; }
  .hero-visual figcaption { font-size: 8px; }
  .summer-note-inner { min-height: 72px; }
  .summer-note p { font-size: 10px; line-height: 1.6; }
  .curation, .route-section, .map-section, .places-section { padding-block: 84px; }
  .curation { grid-template-columns: 1fr; gap: 18px; }
  .curation .section-index, .curation-copy { grid-column: 1; }
  .curation-heading h2, .section-heading h2, .return-copy h2 { font-size: clamp(40px, 12vw, 58px); }
  .curation-copy { padding-top: 20px; }
  .curation-copy > p { font-size: 16px; }
  .split-heading, .map-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 36px; }
  .sync-explainer { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .sync-steps li { padding-right: 22px; }
  .sync-steps li:not(:last-child)::after { right: 7px; width: 12px; height: 12px; }
  .sync-steps strong { font-size: 10px; }
  .route-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .route-card {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .route-card h3 { margin-top: 36px; }
  .view-status { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .view-status-main { grid-template-columns: 1fr; gap: 7px; }
  .view-status-actions { justify-content: flex-start; flex-wrap: wrap; }
  .applied-view-bar { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .view-switcher-wrap { align-items: flex-start; flex-direction: column; gap: 10px; }
  .view-switcher-wrap .filter-row { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; scrollbar-width: none; }
  .view-switcher-wrap .filter-row::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .map-shell { grid-template-columns: 1fr; min-height: 0; }
  .map-frame-wrap, #googleMapFrame { min-height: 470px; }
  .place-panel { min-height: 580px; border-top: 1px solid var(--ink); border-left: 0; }
  .picker-head { align-items: center; flex-direction: row; }
  .filter-row { justify-content: flex-start; }
  .place-tabs {
    display: flex;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .place-tabs::-webkit-scrollbar { display: none; }
  .place-tab {
    min-width: 180px;
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
    scroll-snap-align: start;
  }
  .places-view-bar { align-items: flex-start; flex-direction: column; gap: 10px; }
  .places-view-bar > div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .place-row {
    grid-template-columns: 38px 1fr;
    min-height: 0;
    gap: 10px 18px;
    padding: 25px 0;
  }
  .place-row:hover { padding-left: 0; }
  .place-row-note, .place-row-meta { grid-column: 2; }
  .place-row-title h3 { font-size: 28px; }
  .place-row-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .return-section {
    grid-template-columns: 1fr;
    margin-bottom: 84px;
  }
  .return-media { min-height: 500px; }
  .return-copy { padding: 42px 24px 48px; }
  .return-copy h3 { margin-top: 38px; }
  .footer-main { grid-template-columns: 1fr; padding-block: 58px; gap: 46px; }
  .footer-info { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { padding-block: 18px; align-items: flex-start; flex-direction: column; justify-content: center; }
  .mobile-dock {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 66px;
    border-top: 1px solid var(--ink);
    background: var(--white);
  }
  .mobile-dock a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
  }
  .mobile-dock a:first-child { border-right: 1px solid var(--ink); background: var(--summer-soft); }
  .mobile-dock a:last-child { background: var(--ink); color: var(--white); }
  .toast { bottom: 82px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 49px; }
  .hero-meta { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .hero-meta div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
  .hero-visual { min-height: 380px; }
  .button { flex: 1 1 auto; }
  .sync-steps { grid-template-columns: 1fr; gap: 0; }
  .sync-steps li { min-height: 46px; padding: 5px 0; }
  .sync-steps li:not(:last-child)::after { top: auto; right: auto; bottom: -2px; left: 14px; width: 9px; height: 9px; transform: rotate(45deg); }
  .view-status-actions { align-items: stretch; flex-direction: column; }
  .view-all-button, .view-jump-link { width: 100%; }
  .map-frame-wrap, #googleMapFrame { min-height: 410px; }
  .map-toolbar { align-items: flex-start; flex-direction: column; }
  .map-toolbar-actions { width: 100%; align-items: stretch; flex-direction: column; }
  .map-reset, .map-route-link { width: 100%; }
  .map-brand-chip span { display: none; }
  .place-panel { padding: 24px 20px; }
  .place-actions { grid-template-columns: 1fr; }
  .source-link { grid-column: 1; }
  .return-media { min-height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


.empty-state {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.empty-state-large { padding-block: 60px; }
.map-load-error {
  display: grid;
  min-height: 540px;
  place-items: center;
  padding: 30px;
  background: var(--panel);
}

/* v5 · mobile-safe walk overview
   Google is used only to open an individual place location. */
.button-soft {
  border-color: var(--line-dark);
  background: var(--summer-soft);
  color: var(--ink);
}
.button-soft:hover { background: var(--summer); }
.place-actions.is-empty { display: none; }

#map { scroll-margin-top: 108px; }
.walk-shell {
  grid-template-columns: minmax(0, 1.38fr) minmax(340px, .62fr);
  min-height: 620px;
}
.walk-stage { min-height: 620px; }
.walk-overview {
  flex: 1;
  min-height: 520px;
  background: #f4f3ef;
}
.walk-overview button { font: inherit; color: inherit; }

.walk-overview-all {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  padding: 34px;
  gap: 28px;
}
.walk-overview-intro {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(240px, .8fr) minmax(260px, 1fr);
  align-items: end;
  gap: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}
.walk-overview-intro > span,
.walk-route-summary > span,
.walk-order-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.walk-overview-intro h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  letter-spacing: -.045em;
  line-height: 1.05;
}
.walk-overview-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}
.walk-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
  background: var(--white);
}
.walk-mini-card {
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.walk-mini-card:last-child { border-right: 0; }
.walk-mini-card:hover { background: var(--panel); }
.walk-mini-card:active { transform: translateY(1px); }
.walk-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}
.walk-mini-card > strong {
  margin-top: 58px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.walk-mini-card ol {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}
.walk-mini-card li {
  overflow: hidden;
  color: #4d4c47;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.walk-mini-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--line-dark);
}
.walk-mini-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(17,17,17,.14);
  font-size: 10px;
  font-weight: 700;
}
.walk-mini-card.route-tone-scent { background: #f2eee7; }
.walk-mini-card.route-tone-fashion { background: #edf0ea; }
.walk-mini-card.route-tone-main-street { background: var(--summer-soft); }
.walk-mini-card.route-tone-scent:hover { background: #ebe4da; }
.walk-mini-card.route-tone-fashion:hover { background: #e3e9df; }
.walk-mini-card.route-tone-main-street:hover { background: var(--summer); }

.walk-route-overview {
  min-height: 100%;
  padding: 34px;
}
.walk-route-overview.route-tone-scent { background: linear-gradient(180deg, #f2eee7 0 170px, #f6f5f1 170px); }
.walk-route-overview.route-tone-fashion { background: linear-gradient(180deg, #edf0ea 0 170px, #f6f5f1 170px); }
.walk-route-overview.route-tone-main-street { background: linear-gradient(180deg, var(--summer-soft) 0 170px, #f6f5f1 170px); }
.walk-route-summary {
  display: grid;
  grid-template-columns: minmax(120px, .3fr) minmax(210px, .62fr) minmax(260px, 1fr) auto;
  align-items: end;
  gap: 24px;
  min-height: 112px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(17,17,17,.28);
}
.walk-route-summary h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 43px);
  letter-spacing: -.055em;
  line-height: 1;
}
.walk-route-summary p {
  margin: 0;
  color: #4c4b46;
  font-size: 12px;
  line-height: 1.65;
  word-break: keep-all;
}
.walk-route-summary > strong {
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}
.walk-order-label { margin: 30px 0 12px; }
.walk-sequence {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
.walk-sequence::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 29px;
  width: 1px;
  background: var(--line-dark);
  pointer-events: none;
}
.walk-sequence-item { position: relative; z-index: 1; }
.walk-step {
  display: grid;
  width: 100%;
  min-height: 68px;
  grid-template-columns: 58px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px 10px 0;
  border: 1px solid transparent;
  background: rgba(255,255,255,.9);
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.walk-step:hover { border-color: var(--line-dark); background: var(--white); }
.walk-step:active { transform: translateY(1px); }
.walk-step.is-active {
  border-color: var(--ink);
  background: var(--summer-soft);
  box-shadow: inset 4px 0 0 var(--summer);
}
.walk-step.is-mahina { background: #fbfaf6; }
.walk-step.is-mahina.is-active { background: var(--summer-soft); }
.walk-step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  min-height: 46px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}
.walk-step-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}
.walk-step-copy strong {
  overflow: hidden;
  font-size: 14px;
  letter-spacing: -.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.walk-step-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.walk-step-arrow {
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}
.walk-step.is-active .walk-step-arrow { color: var(--ink); }

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--line-dark);
  background: var(--summer-soft);
  color: var(--ink);
}
.filter-button.route-tone-scent.is-active { background: #ebe4da; }
.filter-button.route-tone-fashion.is-active { background: #e3e9df; }
.filter-button.route-tone-main-street.is-active { background: var(--summer); }

@media (max-width: 760px) {
  body { padding-bottom: calc(94px + env(safe-area-inset-bottom)); }
  #map { scroll-margin-top: 86px; }
  .walk-shell { grid-template-columns: 1fr; min-height: 0; }
  .walk-stage { min-height: 0; }
  .walk-overview { min-height: 0; }
  .walk-overview-all,
  .walk-route-overview { padding: 22px 18px 24px; }
  .walk-overview-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding-bottom: 20px;
  }
  .walk-overview-intro h3 { font-size: 30px; }
  .walk-mini-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .walk-mini-card {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .walk-mini-card > strong { margin-top: 30px; font-size: 29px; }
  .walk-route-summary {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    min-height: 0;
    padding-bottom: 22px;
  }
  .walk-route-summary h3 { font-size: 35px; }
  .walk-route-summary > strong { margin-top: 5px; text-align: left; white-space: normal; }
  .walk-route-overview.route-tone-scent,
  .walk-route-overview.route-tone-fashion,
  .walk-route-overview.route-tone-main-street {
    background-size: 100% 145px;
    background-repeat: no-repeat;
  }
  .walk-order-label { margin-top: 24px; }
  .walk-step {
    min-height: 72px;
    grid-template-columns: 52px minmax(0, 1fr) 24px;
    gap: 10px;
    padding-right: 10px;
  }
  .walk-step-marker { width: 52px; }
  .walk-step-copy strong { font-size: 13px; }
  .walk-step-copy small { white-space: normal; }
  .walk-sequence::before { left: 25px; }
  .place-panel { min-height: 520px; }

  .mobile-dock {
    position: fixed;
    z-index: 80;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 68px;
    padding: 5px;
    gap: 4px;
    border: 1px solid rgba(17,17,17,.18);
    border-radius: 8px;
    background: rgba(247,246,242,.94);
    box-shadow: 0 12px 35px rgba(17,17,17,.14);
    backdrop-filter: blur(16px);
  }
  .mobile-route-button {
    display: grid;
    min-width: 0;
    min-height: 56px;
    place-items: center;
    align-content: center;
    gap: 2px;
    padding: 7px 5px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
  }
  .mobile-route-button small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
  }
  .mobile-route-button span {
    overflow: hidden;
    max-width: 100%;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-route-button.is-active {
    border-color: rgba(17,17,17,.22);
    background: var(--summer-soft);
  }
  .mobile-route-button.route-tone-scent.is-active { background: #ebe4da; }
  .mobile-route-button.route-tone-fashion.is-active { background: #e3e9df; }
  .mobile-route-button.route-tone-main-street.is-active { background: var(--summer-soft); }
  .mobile-route-button:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
  .toast { bottom: calc(94px + env(safe-area-inset-bottom)); }
}

@media (max-width: 400px) {
  .mobile-dock { right: 8px; left: 8px; }
  .mobile-route-button span { font-size: 10px; }
  .walk-step-copy strong { font-size: 12px; }
}

/* v6 · explicit place links and a separate, simplified mobile composition */
.mobile-guide { display: none; }

.place-row {
  cursor: default;
  transition: background .18s ease;
}
.place-row:hover {
  padding-left: 0;
  background: transparent;
}
.place-row.is-active { background: transparent; }
.place-row-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.place-row-map {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  background: var(--summer-soft);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}
.place-row-map:hover { background: var(--summer); }
.place-row-official {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
.place-row-official:hover { color: var(--ink); text-decoration: underline; }
.place-row-map:focus-visible,
.place-row-official:focus-visible,
.mobile-google-button:focus-visible,
.mobile-official-button:focus-visible {
  outline: 3px solid var(--summer);
  outline-offset: 3px;
}

@media (max-width: 1100px) and (min-width: 821px) {
  .place-row-links { align-items: flex-start; }
}

@media (max-width: 820px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .desktop-guide { display: none !important; }
  .mobile-guide { display: block; }

  .site-header {
    min-height: 68px;
    border-bottom-color: rgba(17,17,17,.14);
  }
  .official-logo { width: 76px; }
  .icon-button { border-color: rgba(17,17,17,.16); }

  .hero {
    gap: 24px;
    padding-block: 24px 38px;
  }
  .hero-copy { padding-top: 8px; }
  .hero .overline { margin-bottom: 13px; font-size: 9px; }
  .hero h1 { font-size: clamp(44px, 13.3vw, 58px); line-height: .99; }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.7; }
  .hero-actions { margin-top: 22px; }
  .hero-actions #mahinaDirectionsHero { display: none; }
  .hero-actions .button-dark {
    width: 100%;
    border-color: var(--line-dark);
    background: var(--summer-soft);
    color: var(--ink);
  }
  .hero-actions .button-dark:hover { background: var(--summer); }
  .hero-meta { display: none; }
  .hero-visual { min-height: 0; aspect-ratio: 4 / 3; }
  .hero-visual figcaption { padding: 13px 14px; background: rgba(17,17,17,.76); }

  .summer-note-inner { min-height: 58px; gap: 11px; }
  .summer-note p { font-size: 9px; line-height: 1.55; }
  .summer-mark { width: 22px; flex: 0 0 auto; }

  .curation { display: none; }

  .route-section {
    padding-block: 56px 34px;
    border-bottom: 0;
  }
  .route-section .section-heading { margin-bottom: 20px; }
  .route-section .section-heading > p { display: none; }
  .route-section .section-index { margin-bottom: 11px; }
  .route-section .overline { margin-bottom: 12px; font-size: 9px; }
  .route-section .section-heading h2 { font-size: clamp(36px, 10.4vw, 46px); line-height: 1.02; }
  .sync-explainer,
  .view-status { display: none; }
  .route-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line-dark);
  }
  .route-card {
    min-height: 132px;
    padding: 13px 10px 12px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }
  .route-card:last-child { border-right: 0; }
  .route-card:hover { background: transparent; }
  .route-card.is-active { box-shadow: inset 0 0 0 1px var(--ink); }
  .route-card.route-tone-scent.is-active { background: #f2eee7; }
  .route-card.route-tone-fashion.is-active { background: #edf0ea; }
  .route-card.route-tone-main-street.is-active { background: var(--summer-soft); }
  .route-card-top { font-size: 8px; }
  .route-card-top span:last-child { display: none; }
  .route-card h3 {
    margin: 27px 0 0;
    font-size: clamp(15px, 4.25vw, 18px);
    line-height: 1.2;
    word-break: keep-all;
  }
  .route-card p,
  .route-stop-list,
  .route-card-bottom,
  .route-card-selection { display: none; }

  .mobile-guide {
    padding-block: 34px 72px;
    scroll-margin-top: 78px;
    border-bottom: 1px solid var(--line);
  }
  .mobile-guide-heading { margin-bottom: 22px; }
  .mobile-guide-heading .section-index { margin-bottom: 11px; }
  .mobile-guide-heading .overline { margin-bottom: 12px; font-size: 9px; }
  .mobile-guide-heading h2 {
    margin: 0;
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -.06em;
    line-height: 1.02;
  }
  .mobile-guide-heading > p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    word-break: keep-all;
  }
  .mobile-guide-empty {
    display: grid;
    min-height: 190px;
    align-content: center;
    gap: 10px;
    padding: 25px 22px;
    border: 1px solid var(--line-dark);
    background: var(--white);
  }
  .mobile-guide-empty > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
  }
  .mobile-guide-empty strong { font-size: 21px; letter-spacing: -.035em; }
  .mobile-guide-empty p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; word-break: keep-all; }

  .mobile-walk-overview {
    overflow: hidden;
    border: 1px solid var(--line-dark);
    background: var(--white);
  }
  .mobile-walk-summary {
    padding: 22px 20px 24px;
    border-bottom: 1px solid var(--line-dark);
  }
  .mobile-guide[data-route="scent"] .mobile-walk-summary { background: #f2eee7; }
  .mobile-guide[data-route="fashion"] .mobile-walk-summary { background: #edf0ea; }
  .mobile-guide[data-route="main-street"] .mobile-walk-summary { background: var(--summer-soft); }
  .mobile-walk-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
  }
  .mobile-walk-kicker span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(17,17,17,.32);
    border-radius: 50%;
    color: var(--ink);
  }
  .mobile-walk-summary h3 {
    margin: 25px 0 11px;
    font-size: 35px;
    letter-spacing: -.055em;
    line-height: 1;
  }
  .mobile-walk-summary > p { margin: 0; color: #4d4c47; font-size: 13px; line-height: 1.65; word-break: keep-all; }
  .mobile-walk-meta { display: flex; gap: 8px; margin-top: 19px; }
  .mobile-walk-meta span {
    padding: 6px 9px;
    border: 1px solid rgba(17,17,17,.2);
    border-radius: 99px;
    background: rgba(255,255,255,.48);
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-stop-list {
    position: relative;
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-route-anchor {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px 18px;
    background: #f7f6f2;
  }
  .mobile-route-anchor.is-start { border-bottom: 1px solid var(--line); }
  .mobile-route-anchor.is-return { border-top: 1px solid var(--line); }
  .mobile-route-anchor > span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
  }
  .mobile-route-anchor > div { display: grid; gap: 2px; }
  .mobile-route-anchor strong { font-size: 14px; }
  .mobile-route-anchor small { color: var(--muted); font-size: 9px; }

  .mobile-stop-item { border-top: 1px solid var(--line); }
  .mobile-stop-item:first-of-type { border-top: 0; }
  .mobile-stop-card { padding: 22px 18px 24px; }
  .mobile-stop-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .mobile-stop-head > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
  }
  .mobile-stop-head small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .mobile-stop-card h3 {
    margin: 20px 0 10px;
    font-size: 25px;
    letter-spacing: -.045em;
    line-height: 1.08;
  }
  .mobile-stop-card > p { margin: 0; color: #4d4c47; font-size: 13px; line-height: 1.7; word-break: keep-all; }
  .mobile-stop-card dl { margin: 22px 0 0; }
  .mobile-stop-card dl > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }
  .mobile-stop-card dl > div:last-child { border-bottom: 1px solid var(--line); }
  .mobile-stop-card dt { color: var(--muted); font-size: 9px; font-weight: 700; }
  .mobile-stop-card dd { margin: 0; font-size: 11px; font-weight: 700; line-height: 1.55; }
  .mobile-stop-actions { display: grid; gap: 11px; margin-top: 18px; }
  .mobile-google-button {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--line-dark);
    background: var(--summer-soft);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-google-button:hover { background: var(--summer); }
  .mobile-official-button {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-official-button:hover { color: var(--ink); text-decoration: underline; }

  .return-section { margin-top: 66px; margin-bottom: 66px; }
  .return-media { min-height: 0; aspect-ratio: 1 / .92; }
  .return-copy { padding: 34px 20px 38px; }
  .return-copy .overline { font-size: 9px; }
  .return-copy h2 { font-size: 40px; }
  .return-copy h3 { margin-top: 30px; font-size: 20px; }
  .return-copy > p:not(.overline) { font-size: 13px; }
  .return-actions { display: grid; grid-template-columns: 1fr; }
  .return-actions .button-dark {
    border-color: var(--line-dark);
    background: var(--summer-soft);
    color: var(--ink);
  }
  .return-actions .button-dark:hover { background: var(--summer); }

  .mobile-dock {
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 64px;
    padding: 5px;
    gap: 4px;
    border: 1px solid rgba(17,17,17,.14);
    border-radius: 14px;
    background: rgba(247,246,242,.94);
    box-shadow: 0 10px 30px rgba(17,17,17,.12);
    backdrop-filter: blur(16px);
  }
  .mobile-route-button {
    display: grid;
    min-width: 0;
    min-height: 52px;
    place-items: center;
    padding: 7px 5px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
  }
  .mobile-route-button small { display: none; }
  .mobile-route-button span {
    overflow: hidden;
    max-width: 100%;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-route-button.is-active { border-color: rgba(17,17,17,.18); }
  .mobile-route-button.route-tone-scent.is-active { background: #f2eee7; }
  .mobile-route-button.route-tone-fashion.is-active { background: #edf0ea; }
  .mobile-route-button.route-tone-main-street.is-active { background: var(--summer-soft); }
  .toast { bottom: calc(86px + env(safe-area-inset-bottom)); }
}

@media (max-width: 390px) {
  .route-card { padding-inline: 8px; }
  .route-card h3 { font-size: 15px; }
  .mobile-stop-card h3 { font-size: 23px; }
  .mobile-route-button span { font-size: 9.5px; }
}

.mobile-route-intro { display: none; }
@media (max-width: 820px) {
  .desktop-route-intro { display: none !important; }
  .mobile-route-intro {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    word-break: keep-all;
  }
}

/* v6.1 · final mobile clarity refinements */
@media (max-width: 820px) {
  .route-section .section-heading > .mobile-route-intro {
    display: block;
  }
  .hero-visual figcaption {
    border-top: 1px solid rgba(17,17,17,.14);
    background: rgba(247,246,242,.92);
    color: var(--ink);
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 820px) {
  /* Mobile uses the route cards as the visible heading; avoid a second large title. */
  .mobile-guide { padding-top: 18px; }
  .mobile-guide-heading {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .mobile-guide-empty {
    min-height: 124px;
    padding: 20px;
  }
}
