:root {
  --ink: #14232b;
  --navy: #173042;
  --deep: #0c1d26;
  --paper: #f1ede4;
  --paper-light: #f8f5ed;
  --white: #fffdf8;
  --sea: #3d7897;
  --sun: #d98956;
  --red: #b93428;
  --muted: #687177;
  --line: rgba(20, 35, 43, 0.2);
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --roman: "Cormorant Garamond", Georgia, serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --condensed: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--deep);
  font-family: var(--sans);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

figure,
h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transform-origin: left;
}

.article-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: 88px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.article-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.article-brand img {
  width: 2.15rem;
  height: 2.15rem;
  margin-right: 0.15rem;
  border-radius: 50%;
  object-fit: cover;
}

.article-brand small {
  margin-left: 0.2rem;
  font-family: var(--condensed);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
}

.article-header > p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.article-header > p span {
  color: #efad75;
}

.back-link {
  justify-self: end;
  font-family: var(--condensed);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-decoration: none;
}

.back-link span {
  display: inline-block;
  margin-right: 0.45rem;
  transition: transform 180ms ease;
}

.back-link:hover span {
  transform: translateX(-4px);
}

.story-hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.story-hero-image,
.story-hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.story-hero-image {
  object-fit: cover;
  object-position: 62% center;
  animation: hero-settle 1.6s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.story-hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 24, 33, 0.82) 0%, rgba(8, 24, 33, 0.58) 27%, rgba(8, 24, 33, 0.05) 64%),
    linear-gradient(0deg, rgba(8, 24, 33, 0.45), transparent 35%);
}

@keyframes hero-settle {
  from {
    opacity: 0.55;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.story-hero-copy {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: max(6vw, calc((100vw - 1500px) / 2));
  max-width: min(680px, 58vw);
  transform: translateY(-45%);
}

.story-label,
.eyebrow,
.chapter-number {
  font-family: var(--condensed);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.story-label {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.75);
  animation: copy-up 0.8s 0.25s both;
}

.story-label::before {
  width: 3.5rem;
  height: 1px;
  background: #efad75;
  content: "";
}

.story-hero h1 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8.2vw, 9rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.07em;
  text-wrap: balance;
  animation: copy-up 0.9s 0.4s both;
}

.story-hero h1 span {
  font-size: 0.67em;
  letter-spacing: -0.055em;
}

.story-lead {
  margin: 0;
  padding-left: 4.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  letter-spacing: 0.08em;
  line-height: 2;
  animation: copy-up 0.8s 0.6s both;
}

.story-meta {
  margin: 1.5rem 0 0 4.5rem;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--condensed);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  animation: copy-up 0.8s 0.72s both;
}

.story-meta span {
  margin: 0 0.6rem;
  color: #efad75;
}

@keyframes copy-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-hero-folio {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--condensed);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.story-hero-folio i {
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.story-hero-credit {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1.2rem;
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 2.5rem;
  left: max(6vw, calc((100vw - 1500px) / 2));
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--condensed);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.scroll-cue i {
  position: relative;
  width: 5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.paper-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.65), transparent 28%),
    repeating-linear-gradient(0deg, rgba(20, 35, 43, 0.012) 0, rgba(20, 35, 43, 0.012) 1px, transparent 1px, transparent 4px);
}

.prologue {
  display: grid;
  min-height: 820px;
  padding: clamp(7rem, 12vw, 12rem) max(6vw, calc((100vw - 1500px) / 2));
  grid-template-columns: 0.18fr 0.9fr 0.65fr;
  gap: clamp(2rem, 5vw, 6.5rem);
  align-content: center;
}

.section-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.section-marker span {
  font-family: var(--condensed);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.section-marker::after {
  width: 1px;
  height: 7rem;
  background: var(--line);
  content: "";
}

.section-marker i {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  order: -1;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: normal;
}

.eyebrow {
  margin-bottom: 2rem;
  color: var(--sea);
}

.prologue-heading h2,
.chapter-heading h2,
.streets-title h2,
.cats-copy h2,
.sunset-overlay h2,
.night-copy h2,
.story-footer-main h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.06em;
}

.prologue-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 5.3rem);
}

.prologue-copy {
  padding-top: 5rem;
  color: #44535a;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.prologue-copy p {
  margin-bottom: 1.6rem;
}

.drop-cap::first-letter {
  float: left;
  margin: -0.15em 0.12em 0 0;
  color: var(--red);
  font-family: var(--roman);
  font-size: 5.5em;
  line-height: 0.9;
}

.prologue-quote {
  position: absolute;
  right: max(5vw, calc((100vw - 1540px) / 2));
  bottom: 4.5rem;
  margin: 0;
  color: rgba(20, 35, 43, 0.34);
  text-align: right;
}

.prologue-quote p {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
}

.prologue-quote cite {
  font-family: var(--condensed);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.16em;
}

.panorama {
  position: relative;
  margin: 0;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(2rem, 7vw, 8rem) clamp(5rem, 9vw, 9rem);
  color: var(--white);
  background: var(--deep);
}

.panorama-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.15 / 1;
}

.panorama-image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  content: "";
}

.panorama img {
  height: 100%;
  object-fit: cover;
}

.panorama figcaption {
  display: grid;
  width: min(760px, 72%);
  margin: 1.5rem 0 0 auto;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.panorama figcaption span {
  color: var(--sun);
  font-family: var(--condensed);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.vertical-place {
  position: absolute;
  bottom: 8rem;
  left: 2.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
}

.chapter {
  background: var(--paper-light);
}

.chapter-harbor {
  display: grid;
  padding: clamp(7rem, 12vw, 13rem) max(5vw, calc((100vw - 1500px) / 2));
  grid-template-columns: 0.9fr 0.65fr;
  gap: 3rem 9vw;
}

.chapter-number {
  display: flex;
  margin-bottom: 1.6rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--sea);
}

.chapter-number span {
  color: var(--sun);
}

.chapter-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.3rem);
}

.chapter-intro {
  max-width: 31rem;
  padding-top: 4.5rem;
  color: #4d5b61;
  font-family: var(--serif);
  font-size: 0.97rem;
}

.harbor-wide {
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  grid-column: 1 / -1;
}

.harbor-wide img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.harbor-wide figcaption,
.portrait-photo figcaption,
.street-main figcaption,
.cat-small figcaption {
  margin-top: 0.9rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.7rem;
}

.harbor-editorial {
  display: grid;
  margin-top: clamp(5rem, 10vw, 11rem);
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.62fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.portrait-photo,
.postbox-photo {
  margin: 0;
}

.portrait-photo img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.portrait-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.portrait-photo figcaption span {
  color: var(--red);
  font-family: var(--condensed);
  letter-spacing: 0.14em;
}

.harbor-note {
  position: relative;
  padding: 2.5rem 0;
}

.harbor-note::before,
.harbor-note::after {
  display: block;
  width: 4rem;
  height: 1px;
  margin-bottom: 2rem;
  background: var(--ink);
  content: "";
}

.harbor-note::after {
  margin: 2rem 0 0;
}

.note-index {
  margin-bottom: 1.2rem;
  color: var(--sea);
  font-family: var(--condensed);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.harbor-note h3 {
  margin-bottom: 1.8rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

.harbor-note > p:not(.note-index) {
  color: #536167;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.fact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fact-line span {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  font-family: var(--condensed);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.postbox-photo {
  align-self: end;
  transform: translateY(5rem);
}

.postbox-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.taichoro-section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(7rem, 11vw, 11rem);
  color: var(--white);
  background: #091318;
}

.taichoro-visual {
  position: relative;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.taichoro-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 19, 24, 0.5), transparent 40%);
  content: "";
}

.taichoro-visual figcaption {
  position: absolute;
  z-index: 2;
  bottom: clamp(2rem, 5vw, 5rem);
  left: max(2rem, 7vw);
  margin: 0;
}

.taichoro-visual figcaption span {
  font-family: var(--condensed);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
}

.taichoro-visual figcaption p {
  margin: 1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.5vw, 6rem);
  line-height: 1.35;
  letter-spacing: -0.06em;
}

.taichoro-copy {
  display: grid;
  width: min(780px, calc(100% - 3rem));
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  grid-template-columns: auto 1fr;
  gap: 2.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.large-initial {
  margin: -0.35em 0 0;
  color: var(--sun);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.chapter-streets {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(8rem, 13vw, 14rem) max(5vw, calc((100vw - 1500px) / 2));
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1.2fr) minmax(240px, 0.64fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

.streets-title {
  position: sticky;
  top: 4rem;
}

.streets-title h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.7rem, 3.5vw, 4.2rem);
}

.streets-title > p:last-child {
  max-width: 25rem;
  color: #536167;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.street-main,
.street-portrait,
.street-retro {
  margin: 0;
}

.street-main img {
  aspect-ratio: 0.94 / 1;
  object-fit: cover;
}

.street-portrait {
  margin-top: 9rem;
}

.street-portrait img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.street-retro {
  margin-top: 5rem;
  grid-column: 2 / 4;
}

.street-retro img {
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
}

.street-retro figcaption {
  display: flex;
  margin-top: 1rem;
  justify-content: space-between;
  gap: 2rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.street-retro figcaption span {
  color: var(--sea);
  font-family: var(--condensed);
  letter-spacing: 0.14em;
}

.street-side-word {
  position: absolute;
  right: -0.2em;
  bottom: 0;
  margin: 0;
  color: rgba(20, 35, 43, 0.04);
  font-family: var(--roman);
  font-size: clamp(8rem, 20vw, 21rem);
  font-style: italic;
  line-height: 0.7;
  pointer-events: none;
}

.cats-section {
  display: grid;
  padding: clamp(7rem, 12vw, 13rem) max(5vw, calc((100vw - 1500px) / 2));
  grid-template-columns: 0.55fr 1fr 0.46fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  background: #d8d5ca;
}

.cats-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(2.1rem, 2.7vw, 3.4rem);
}

.cats-copy > p:last-child {
  color: #4f5b60;
  font-family: var(--serif);
  font-size: 0.88rem;
}

.cats-wide,
.cat-small {
  margin: 0;
}

.cats-wide img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.cat-small {
  transform: translateY(8rem);
}

.cat-small img {
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
  object-position: 53% center;
}

.cat-small figcaption {
  font-family: var(--condensed);
  letter-spacing: 0.12em;
}

.sunset-section {
  position: relative;
  min-height: 850px;
  color: var(--white);
  background: #6f5c52;
}

.sunset-image,
.sunset-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
}

.sunset-image img {
  object-fit: cover;
  filter: saturate(0.88);
}

.sunset-section::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 23, 24, 0.78), rgba(22, 23, 24, 0.12) 62%);
  content: "";
}

.sunset-overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(6vw, calc((100vw - 1500px) / 2));
  width: min(34rem, 44vw);
  transform: translateY(-50%);
}

.sunset-overlay .chapter-number {
  color: #ffd3a9;
}

.sunset-overlay h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.sunset-overlay > p:last-child {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.77);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.night-section {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 850px;
  padding: clamp(7rem, 12vw, 12rem) max(5vw, calc((100vw - 1500px) / 2));
  grid-template-columns: 0.62fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  color: var(--white);
  background: #080b0d;
}

.night-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 4vw, 4.7rem);
}

.night-copy > p:last-child {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.night-photo {
  position: relative;
  z-index: 1;
  margin: 0;
}

.night-photo::before {
  position: absolute;
  z-index: -1;
  top: -1.8rem;
  right: -1.8rem;
  width: 45%;
  height: 48%;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
}

.night-photo img {
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.night-stamp {
  position: absolute;
  right: -0.4rem;
  bottom: 2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--condensed);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.8;
  text-align: right;
  pointer-events: none;
}

.walk-guide {
  display: grid;
  padding: clamp(8rem, 13vw, 14rem) max(5vw, calc((100vw - 1500px) / 2));
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.walk-guide-heading {
  position: sticky;
  top: 4rem;
}

.walk-guide-heading h2 {
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.2vw, 4.9rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.06em;
}

.walk-guide-heading > p:last-child {
  max-width: 30rem;
  color: #4f5b60;
  font-family: var(--serif);
  font-size: 0.92rem;
}

.route-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.route-list li {
  display: grid;
  padding: 2.25rem 0;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.route-index {
  color: var(--red);
  font-family: var(--roman);
  font-size: 2.3rem;
  font-style: italic;
  line-height: 1;
}

.route-list li > div > p:first-child {
  margin-bottom: 0.55rem;
  color: var(--sea);
  font-family: var(--condensed);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}

.route-list h3 {
  margin-bottom: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.route-list li > div > p:last-child {
  margin: 0;
  color: #536167;
  font-family: var(--serif);
  font-size: 0.84rem;
}

.walk-guide-facts {
  display: grid;
  padding: clamp(2rem, 4vw, 3.5rem);
  grid-column: 2;
  grid-template-columns: 0.5fr 1fr;
  gap: 1.5rem 3rem;
  color: var(--white);
  background: var(--navy);
}

.walk-guide-facts > p {
  margin: 0;
  font-family: var(--condensed);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.walk-guide-facts dl {
  margin: 0;
}

.walk-guide-facts dl div {
  display: grid;
  padding: 0.7rem 0;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.walk-guide-facts dt {
  color: #efad75;
  font-family: var(--serif);
  font-size: 0.72rem;
}

.walk-guide-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.74rem;
}

.walk-guide-facts > a {
  padding-top: 1.4rem;
  grid-column: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.7rem;
  text-decoration: none;
}

.walk-guide-facts > a span {
  margin-left: 0.4rem;
  color: #efad75;
}

.story-footer {
  display: grid;
  padding: clamp(8rem, 13vw, 14rem) max(5vw, calc((100vw - 1500px) / 2)) 0;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.story-footer-main h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.story-footer-main > p:not(.eyebrow) {
  max-width: 34rem;
  color: #4f5b60;
  font-family: var(--serif);
  font-size: 0.95rem;
}

.story-actions {
  display: flex;
  margin-top: 3rem;
  gap: 0.8rem;
}

.story-actions a {
  display: flex;
  min-width: 13rem;
  padding: 1rem 1.2rem;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  font-size: 0.73rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.story-actions a:last-child {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}

.story-actions a:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-3px);
}

.travel-memo {
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

.travel-memo > p {
  margin-bottom: 2rem;
  font-family: var(--condensed);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
}

.travel-memo dl {
  margin: 0;
}

.travel-memo dl div {
  display: grid;
  padding: 1rem 0;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.travel-memo dt {
  color: var(--sea);
  font-family: var(--condensed);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.travel-memo dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.75rem;
}

.author-card {
  display: grid;
  max-width: 48rem;
  margin-top: 1rem;
  padding-top: 2rem;
  grid-column: 1 / -1;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
}

.author-card > img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-card > div > p:first-child {
  margin-bottom: 0.4rem;
  color: var(--sea);
  font-family: var(--condensed);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
}

.author-card h3 {
  margin-bottom: 0.45rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.author-card > div > p:last-child {
  max-width: 35rem;
  margin: 0;
  color: #536167;
  font-family: var(--serif);
  font-size: 0.78rem;
}

.story-colophon {
  display: flex;
  margin-top: clamp(7rem, 12vw, 12rem);
  padding: 2rem 0;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.story-colophon .article-brand {
  font-size: 1.15rem;
}

.story-colophon .article-brand img {
  width: 1.9rem;
  height: 1.9rem;
}

.story-colophon > p,
.story-colophon > a {
  margin: 0;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .prologue {
    min-height: 0;
    grid-template-columns: auto 1fr;
  }

  .prologue-copy {
    padding-top: 1rem;
    grid-column: 2;
  }

  .prologue-quote {
    display: none;
  }

  .harbor-editorial {
    grid-template-columns: 0.8fr 0.75fr;
  }

  .postbox-photo {
    grid-column: 2;
    transform: none;
  }

  .chapter-streets {
    grid-template-columns: 0.75fr 1fr;
  }

  .streets-title {
    position: relative;
    top: 0;
  }

  .street-portrait {
    margin-top: 4rem;
  }

  .street-retro {
    grid-column: 1 / -1;
  }

  .cats-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .cat-small {
    width: 65%;
    margin-left: auto;
    grid-column: 2;
    transform: none;
  }

  .night-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .walk-guide {
    grid-template-columns: 1fr;
  }

  .walk-guide-heading {
    position: relative;
    top: 0;
  }

  .walk-guide-facts {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .article-header {
    height: 70px;
    padding-inline: 1rem;
    grid-template-columns: 1fr auto;
  }

  .article-header > p {
    display: none;
  }

  .article-brand {
    font-size: 1.05rem;
  }

  .article-brand img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .article-brand small {
    display: none;
  }

  .back-link {
    font-size: 0.55rem;
  }

  .story-hero {
    min-height: 760px;
  }

  .story-hero-image {
    object-position: 68% center;
  }

  .story-hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 24, 33, 0.8) 0%, rgba(8, 24, 33, 0.25) 65%),
      linear-gradient(90deg, rgba(8, 24, 33, 0.52), transparent);
  }

  .story-hero-copy {
    top: auto;
    right: 1.25rem;
    bottom: 8rem;
    left: 1.25rem;
    max-width: none;
    transform: none;
  }

  .story-label {
    margin-bottom: 1.3rem;
    font-size: 0.58rem;
  }

  .story-label::before {
    width: 2rem;
  }

  .story-hero h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(3.55rem, 18vw, 5.5rem);
  }

  .story-lead {
    padding-left: 0;
    font-size: 0.82rem;
  }

  .story-meta {
    margin: 1rem 0 0;
    font-size: 0.5rem;
  }

  .story-hero-folio,
  .story-hero-credit {
    display: none;
  }

  .scroll-cue {
    bottom: 2rem;
    left: 1.25rem;
  }

  .prologue {
    display: block;
    padding: 6rem 1.5rem;
  }

  .section-marker {
    margin-bottom: 2.5rem;
    flex-direction: row;
    justify-content: flex-start;
  }

  .section-marker span {
    writing-mode: initial;
  }

  .section-marker::after {
    width: 4rem;
    height: 1px;
  }

  .prologue-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.7rem);
  }

  .prologue-copy {
    padding-top: 3rem;
  }

  .panorama {
    padding: 1rem 1rem 5rem;
  }

  .panorama-image-wrap {
    aspect-ratio: 1 / 1.15;
  }

  .panorama img {
    object-position: 56% center;
  }

  .panorama figcaption {
    width: 100%;
  }

  .vertical-place {
    display: none;
  }

  .chapter-harbor {
    display: block;
    padding: 6.5rem 1.25rem;
  }

  .chapter-heading h2 {
    font-size: clamp(3rem, 13vw, 4.7rem);
  }

  .chapter-intro {
    padding-top: 2rem;
  }

  .harbor-wide {
    margin-top: 4rem;
  }

  .harbor-wide img {
    aspect-ratio: 1 / 0.9;
  }

  .harbor-editorial {
    display: block;
    margin-top: 5rem;
  }

  .portrait-photo {
    width: 78%;
  }

  .harbor-note {
    margin: 3rem 0;
    padding-left: 15%;
  }

  .postbox-photo {
    width: 82%;
    margin-left: auto;
  }

  .taichoro-section {
    padding-top: 1.25rem;
  }

  .taichoro-visual {
    width: calc(100% - 2.5rem);
  }

  .taichoro-visual img {
    min-height: 600px;
    object-fit: cover;
    object-position: 55% center;
  }

  .taichoro-visual figcaption {
    bottom: 2rem;
    left: 1.25rem;
  }

  .taichoro-visual figcaption p {
    font-size: clamp(2.35rem, 11.3vw, 3.5rem);
  }

  .taichoro-copy {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .chapter-streets {
    display: block;
    padding: 7rem 1.25rem;
  }

  .streets-title h2 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .street-main {
    width: 88%;
    margin: 4rem 0 0 auto;
  }

  .street-main img {
    aspect-ratio: 0.83 / 1;
  }

  .street-portrait {
    width: 72%;
    margin-top: 3rem;
  }

  .street-retro {
    margin-top: 3rem;
  }

  .street-retro img {
    aspect-ratio: 1.2 / 1;
  }

  .street-retro figcaption {
    flex-direction: column;
    gap: 0.35rem;
  }

  .cats-section {
    display: block;
    padding: 7rem 1.25rem;
  }

  .cats-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .cats-wide {
    margin-top: 3.5rem;
  }

  .cats-wide img {
    aspect-ratio: 1 / 1;
  }

  .cat-small {
    width: 64%;
    margin-top: 1.5rem;
  }

  .sunset-section {
    min-height: 760px;
  }

  .sunset-image img {
    object-position: 57% center;
  }

  .sunset-section::after {
    background: linear-gradient(0deg, rgba(22, 23, 24, 0.84), rgba(22, 23, 24, 0.08) 70%);
  }

  .sunset-overlay {
    top: auto;
    right: 1.25rem;
    bottom: 3rem;
    left: 1.25rem;
    width: auto;
    transform: none;
  }

  .sunset-overlay h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .night-section {
    display: flex;
    min-height: auto;
    padding: 7rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }

  .night-copy h2 {
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .night-photo {
    margin-top: 2rem;
  }

  .night-photo img {
    aspect-ratio: 0.92 / 1;
  }

  .night-stamp {
    font-size: 4.5rem;
  }

  .walk-guide {
    display: block;
    padding: 7rem 1.25rem;
  }

  .walk-guide-heading h2 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }

  .route-list {
    margin-top: 4rem;
  }

  .route-list li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .route-index {
    font-size: 1.8rem;
  }

  .walk-guide-facts {
    display: block;
    margin-top: 4rem;
    padding: 2rem 1.5rem;
  }

  .walk-guide-facts dl {
    margin-top: 1.5rem;
  }

  .walk-guide-facts > a {
    display: block;
    margin-top: 1.5rem;
  }

  .story-footer {
    display: block;
    padding: 7rem 1.25rem 0;
  }

  .story-footer-main h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .story-actions {
    flex-direction: column;
  }

  .story-actions a {
    width: 100%;
  }

  .travel-memo {
    margin-top: 5rem;
  }

  .author-card {
    margin-top: 4rem;
    grid-template-columns: 4rem 1fr;
  }

  .author-card > img {
    width: 4rem;
    height: 4rem;
  }

  .story-colophon {
    margin-top: 6rem;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
