:root {
  --ink: #101615;
  --pine: #153e34;
  --moss: #657249;
  --river: #2b7f8c;
  --mist: #dbe8e7;
  --paper: #f5f0e5;
  --bone: #fffaf0;
  --dawn: #f0b44b;
  --red: #a84635;
  --night: #171923;
  --line: rgba(16, 22, 21, .15);
  --soft: rgba(16, 22, 21, .68);
  --nav-h: 68px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(16, 22, 21, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 22, 21, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(21, 62, 52, .06), transparent 24%, transparent 74%, rgba(43, 127, 140, .08));
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}

a,
button {
  font: inherit
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--dawn);
  outline-offset: 4px
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0
}

p {
  max-width: 70ch;
  text-align: justify
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 3rem);
  background: rgba(245, 240, 229, .92);
  border-bottom: 1px solid rgba(16, 22, 21, .11);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0 auto;
}

.nav-links a,
.mobile-panel a {
  color: rgba(16, 22, 21, .66);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-panel a:hover,
.mobile-panel a.active {
  color: var(--red)
}

.journey-link {
  border: 1px solid rgba(16, 22, 21, .2);
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  padding: .68rem .9rem;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 22, 21, .2);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .24s, opacity .24s;
}

.menu-btn.open span {
  opacity: 0
}

.menu-btn.open::before {
  transform: translateY(7px) rotate(45deg)
}

.menu-btn.open::after {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-panel {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 18;
  background: rgba(245, 240, 229, .98);
  border-bottom: 1px solid rgba(16, 22, 21, .12);
  padding: .5rem clamp(1rem, 5vw, 2rem) 1rem;
}

.mobile-panel.open {
  display: block
}

.mobile-panel a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(16, 22, 21, .08);
}

.mobile-panel a:last-child {
  border-bottom: 0
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.15rem, 5vw, 4rem);
}

.page-main {
  padding-top: var(--nav-h)
}

.kicker {
  color: var(--red);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: rgba(224, 163, 40, 0.82);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--dawn);
}

.lead {
  color: rgba(16, 22, 21, .78);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.75;
}

.body-copy {
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.body-copy p+p {
  margin-top: 1.1rem
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.text-link,
.dark-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(16, 22, 21, .18);
  color: var(--ink);
  text-decoration: none;
  padding: .7rem 1rem;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.dark-link {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}

.text-link:hover,
.dark-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: transparent
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #1c2927;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  filter: saturate(1.05) contrast(1.05) brightness(.9)
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 22, 21, .9) 0%, rgba(16, 22, 21, .6) 38%, rgba(16, 22, 21, .15) 68%),
    linear-gradient(0deg, rgba(16, 22, 21, .86), transparent 44%);
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0;
  padding: calc(var(--nav-h) + 4rem) clamp(1.15rem, 5vw, 4rem) clamp(2rem, 7vh, 4.5rem);
  text-align: left;
}

h1 {
  max-width: 900px;
  color: var(--bone);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 1.05;
  margin: 1.1rem 0 1.3rem;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 250, 240, .84);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2rem, 7vh, 4rem);
  max-width: 960px;
  background: rgba(255, 250, 240, .22);
  border: 1px solid rgba(255, 250, 240, .22);
}

.hero-meta div {
  min-height: 112px;
  padding: 1rem;
  background: rgba(16, 22, 21, .42);
  backdrop-filter: blur(8px);
}

.hero-meta strong {
  display: block;
  color: var(--dawn);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: .4rem;
}

.hero-meta span {
  color: rgba(255, 250, 240, .72);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.visit-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .85rem;
}

.visit-header {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.visit-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(233, 183, 85, 0.22);
  border: 1px solid rgba(124, 85, 5, 0.22);
}

.visit-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: .45rem .7rem;
  background: rgba(16, 22, 21, .42);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.visit-links a strong {
  display: block;
  color: var(--dawn);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  line-height: 1.1;
}

.visit-links a:hover {
  background: rgba(16, 22, 21, .62)
}

.intro {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.opening-grid,
.page-grid,
.sources-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

h2 {
  color: var(--pine);
  font-size: clamp(2.05rem, 4vw, 3.45rem);
  line-height: 1.03;
}

.atlas-note {
  border-left: 3px solid var(--dawn);
  margin-top: 1.5rem;
  padding: .25rem 0 .25rem 1.1rem;
  color: rgba(16, 22, 21, .66);
  font-size: .86rem;
  line-height: 1.75;
}

.story-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.story-card {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 250, 240, .78);
  color: var(--ink);
  text-decoration: none;
  padding: 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(16, 22, 21, .08);
}

.story-card:hover {
  background: var(--bone);
  border-color: rgba(16, 22, 21, .18)
}

.story-card span {
  color: var(--red);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-card h3 {
  color: var(--pine);
  font-size: 1.5rem;
  line-height: 1.15;
}

.story-card p {
  color: rgba(16, 22, 21, .63);
  font-size: .93rem;
  line-height: 1.7;
}

.page-hero {
  min-height: 64svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #1c2927;
}

.page-hero.compact {
  min-height: 48svh
}

.page-hero-inner {
  width: min(1180px, 100%);
  margin: 0;
  padding: calc(var(--nav-h) + 3rem) clamp(1.15rem, 5vw, 4rem) clamp(2.5rem, 7vh, 4rem);
  text-align: left;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  max-width: 920px;
  line-height: 1.05;
}

.page-hero .hero-copy {
  max-width: 680px
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.split-feature.reverse .feature-copy {
  order: 2
}

.split-feature.reverse .feature-image {
  order: 1
}

.feature-copy {
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 6vw, 5.5rem);
}

.feature-copy-inner {
  max-width: 620px
}

.feature-copy h2 {
  margin-bottom: 1.15rem
}

.feature-image {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.caption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 78%;
  background: rgba(16, 22, 21, .76);
  color: rgba(255, 250, 240, .82);
  padding: .7rem .9rem;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field-list {
  display: grid;
  gap: .8rem;
  margin-top: 1.7rem;
}

.field-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(16, 22, 21, .12);
  padding-top: .8rem;
}

.field-row dt {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.field-row dd {
  color: rgba(16, 22, 21, .68);
  font-size: .9rem;
  line-height: 1.65;
}

.deep-section,
.quiet-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.deep-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.deep-grid h2,
.two-column h2 {
  margin-bottom: 1rem
}

.fact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 22, 21, .14);
  border: 1px solid rgba(16, 22, 21, .12);
}

.fact-cards article {
  min-height: 230px;
  background: rgba(255, 250, 240, .76);
  padding: 1.2rem;
}

.fact-cards span {
  display: block;
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .16em;
  margin-bottom: .9rem;
}

.fact-cards h3 {
  color: var(--pine);
  font-size: 1.22rem;
  line-height: 1.15;
  margin-bottom: .55rem;
}

.fact-cards p {
  color: rgba(16, 22, 21, .66);
  font-size: .95rem;
  line-height: 1.75;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.image-strip figure {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: #cad7d3;
  border-radius: 8px;
}

.image-strip figure img {
  border-radius: 8px
}

.image-strip-short {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto
}

.image-strip-short figure {
  min-height: 180px
}

.image-strip figure.split {
  display: flex;
  flex-direction: column;
}

.image-strip figure.split img {
  flex: 1;
  width: 100%;
  object-fit: cover;
  min-height: 0;
}

.image-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 22, 21, .74);
  color: rgba(255, 250, 240, .82);
  padding: .8rem 1rem;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.55;
}

.people-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.portrait-image {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}

.portrait-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.25rem, 6vw, 5.5rem);
}

.portrait-copy h2 {
  margin-bottom: 1rem
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 22, 21, .14);
  border: 1px solid rgba(16, 22, 21, .12);
}

.check-grid div {
  min-height: 150px;
  background: rgba(255, 250, 240, .76);
  padding: 1.1rem;
}

.check-grid strong {
  display: block;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.15;
  margin-bottom: .5rem;
}

.check-grid span {
  display: block;
  color: rgba(16, 22, 21, .66);
  font-size: .86rem;
  line-height: 1.7;
}

.route-section {
  position: relative;
  background: linear-gradient(180deg, var(--paper), #e7efed);
}

.route-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(var(--line), var(--river), var(--line));
  opacity: .75;
}

.route-head {
  max-width: 760px;
  margin-bottom: 3rem
}

.route-map {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.route-stop {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  gap: 1rem;
}

.route-stop:nth-child(even) .stop-text {
  grid-column: 3
}

.route-stop:nth-child(even) .stop-empty {
  grid-column: 1;
  grid-row: 1
}

.dot {
  grid-column: 2;
  grid-row: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid rgba(16, 22, 21, .24);
  color: var(--red);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  z-index: 1;
}

.stop-text {
  background: rgba(255, 250, 240, .78);
  border: 1px solid rgba(16, 22, 21, .11);
  padding: 1rem 1.15rem;
}

.stop-text strong {
  display: block;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.stop-text span {
  display: block;
  margin-top: .35rem;
  color: rgba(16, 22, 21, .62);
  font-size: .82rem;
  line-height: 1.55;
}

.people-band,
.memory-band,
.sources {
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.people-band {
  background: var(--pine)
}

.people-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/kaho-village-hq.jpg") center/cover;
  opacity: .18;
  filter: saturate(.8);
}

.people-band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.people-band h2,
.memory-band h2,
.sources h2 {
  color: var(--bone)
}

.people-band .kicker,
.memory-band .kicker,
.sources .kicker {
  color: var(--dawn)
}

.people-band .lead,
.people-band .body-copy,
.memory-band .lead,
.memory-band .body-copy {
  color: rgba(255, 250, 240, .78)
}

.quiet-grid,
.travel-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.quiet-grid {
  background: rgba(255, 250, 240, .18);
  border: 1px solid rgba(255, 250, 240, .2);
}

.quiet-item {
  min-height: 190px;
  padding: 1.25rem;
  background: rgba(16, 22, 21, .32);
}

.quiet-item h3 {
  color: var(--bone);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: .55rem;
}

.quiet-item p {
  color: rgba(255, 250, 240, .7);
  font-size: .93rem;
  line-height: 1.75;
}

.memory-band {
  background: var(--night)
}

.memory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.memory-photo {
  aspect-ratio: 4/5;
  position: relative;
  border: 1px solid rgba(255, 250, 240, .2);
}

.memory-mark {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 250, 240, .18);
  padding-top: 1rem;
  color: rgba(255, 250, 240, .68);
  font-size: .84rem;
  line-height: 1.75;
}

.war-hero {
  min-height: 72svh
}

.war-hero .page-hero-media img {
  object-position: center 34%;
  filter: saturate(.95) contrast(1.08) brightness(.82);
}

.war-overview {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.war-grid,
.war-reading-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.war-grid h2 {
  margin-bottom: 1.15rem
}

.war-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 22, 21, .14);
  border: 1px solid rgba(16, 22, 21, .12);
}

.war-facts div {
  min-height: 166px;
  background: rgba(245, 240, 229, .88);
  padding: 1.15rem;
}

.war-facts strong {
  display: block;
  color: var(--pine);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: .55rem;
}

.war-facts span {
  display: block;
  color: rgba(16, 22, 21, .64);
  font-size: .84rem;
  line-height: 1.65;
}

.war-timeline-section {
  background: linear-gradient(180deg, #e7efed, var(--paper));
  border-bottom: 1px solid var(--line);
}

.war-section-head {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: end;
  margin-bottom: 2rem;
}

.war-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 22, 21, .15);
  border: 1px solid rgba(16, 22, 21, .13);
}

.war-timeline article {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  background: rgba(255, 250, 240, .76);
  padding: 1.2rem;
}

.war-timeline span {
  color: var(--red);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .16em;
}

.war-timeline h3,
.war-place h3 {
  color: var(--pine);
  font-size: 1.3rem;
  line-height: 1.15;
}

.war-timeline p,
.war-place p {
  color: rgba(16, 22, 21, .66);
  font-size: .95rem;
  line-height: 1.78;
}

.war-places {
  background: var(--paper)
}

.war-place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.war-place {
  display: grid;
  grid-template-rows: minmax(260px, 34vw) auto;
  background: var(--bone);
  border: 1px solid rgba(16, 22, 21, .12);
}

.war-place.wide {
  grid-column: 1/-1;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  grid-template-rows: auto;
}

.war-place-image {
  min-height: 260px;
  overflow: hidden;
}

.war-place-copy {
  padding: 1.25rem;
}

.war-place-copy h3 {
  margin-bottom: .55rem
}

.war-reading {
  background: var(--ink);
  color: var(--bone);
}

.war-reading h2 {
  color: var(--bone)
}

.war-reading .kicker {
  color: var(--dawn)
}

.war-source-list {
  display: grid;
  gap: .8rem;
}

.war-source-list a {
  display: grid;
  gap: .35rem;
  color: rgba(255, 250, 240, .78);
  text-decoration: none;
  border-top: 1px solid rgba(255, 250, 240, .18);
  padding-top: .85rem;
}

.war-source-list a:first-child {
  border-top: 0;
  padding-top: 0;
}

.war-source-list strong {
  color: var(--dawn);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.war-source-list span {
  font-size: .9rem;
  line-height: 1.65;
}

.war-source-list a:hover span {
  color: var(--bone)
}

.travel-section {
  background: #e7efed
}

.travel-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.travel-notes {
  background: rgba(16, 22, 21, .14);
  border: 1px solid rgba(16, 22, 21, .12);
}

.travel-note {
  background: rgba(255, 250, 240, .72);
  padding: 1.15rem;
  min-height: 170px;
}

.travel-note h3 {
  color: var(--pine);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.travel-note p {
  color: rgba(16, 22, 21, .67);
  font-size: .93rem;
  line-height: 1.75;
}

.warning {
  margin-top: 1.35rem;
  background: var(--ink);
  color: rgba(255, 250, 240, .82);
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--red);
  font-size: .88rem;
  line-height: 1.8;
}

.image-essay {
  background: var(--paper)
}

.essay-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: end;
  margin-bottom: 2rem;
}

.essay-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
}

.essay-large,
.essay-small {
  position: relative;
  overflow: hidden;
  background: #cad7d3;
}

.essay-large {
  min-height: 580px
}

.essay-stack {
  display: grid;
  gap: 1rem;
}

.essay-small {
  min-height: 280px
}

.sources {
  background: var(--ink);
}

.sources .wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.sources-grid {
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
}

.sources h2 {
  font-size: 1.45rem
}

.source-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
}

.source-links a {
  color: rgba(255, 250, 240, .78);
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 180, 75, .35);
  padding-bottom: .25rem;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.5;
}

.source-links a:hover {
  color: var(--dawn)
}

.page-next {
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.next-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.next-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem)
}

.next-grid p {
  margin-top: .6rem;
  color: rgba(16, 22, 21, .66);
  line-height: 1.75;
}

footer {
  background: #080b0b;
  color: rgba(255, 250, 240, .55);
  padding: 2rem clamp(1.15rem, 5vw, 4rem);
  text-align: center;
}

footer strong {
  display: block;
  color: var(--bone);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  margin-bottom: .35rem;
}

footer p {
  margin: 0 auto;
  font-size: .85rem;
  line-height: 1.7;
}

footer a {
  color: rgba(255, 250, 240, .72)
}

/* ── EXPERIENCES HERO ── */
.ph-hdr {
  position: relative;
  height: clamp(340px, 52vh, 580px);
  overflow: hidden
}

.ph-hdr img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.ph-hdr-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16, 22, 21, 0.72), rgba(16, 22, 21, 0.18));
  z-index: 1
}

.ph-hdr-c {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem clamp(1.15rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0;
  width: 100%;
  text-align: left;
}

.ph-hdr.page-hero {
  background: transparent;
  display: block;
  min-height: 0
}

.page-hero.ph-hdr::after {
  display: none
}

.ptag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dawn);
  margin-bottom: .6rem
}

.ptit {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 750;
  color: #fff;
  line-height: 1.2
}

/* ── EXPERIENCES ── */
.pg {
  padding-top: var(--nav-h);
  background: var(--paper)
}

.pg .cw {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem
}

.pq {
  background: #f0e9df;
  border-radius: 4px;
  padding: 2rem 3rem;
  margin-bottom: 3rem;
  border-left: 4px solid var(--dawn);
}

.pq p {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.28rem;
  font-style: italic;
  color: #4a3f38;
  line-height: 1.7;
}

.stc {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(42, 36, 32, 0.07);
  overflow: hidden;
}

.stc-wrap {
  display: block
}

.sbn {
  aspect-ratio: 16/7;
  min-height: 210px;
  position: relative;
  height: auto
}

.sbn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.sbo {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 20, 14, 0.78) 0%, rgba(30, 20, 14, 0.1) 60%);
}

.stc-wrap .stc:nth-child(even) .sbo {
  background: linear-gradient(to top, rgba(30, 20, 14, 0.82) 0%, rgba(30, 20, 14, 0.08) 55%);
}

.sbm {
  position: absolute;
  left: 2rem;
  top: auto;
  bottom: 1.5rem;
  transform: none
}

.stc-wrap .stc:nth-child(even) .sbm {
  left: auto;
  right: 2rem;
  text-align: right;
  top: auto;
  bottom: 1.5rem;
  transform: none
}

.sn {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  display: block
}

.sf {
  font-size: 0.73rem;
  color: rgba(235, 231, 223, 0.68);
  margin-top: 4px;
  display: block
}

.sw {
  padding: 1.7rem 2rem
}

.sb {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.07rem;
  line-height: 1.85;
  color: #4a3f38;
  font-style: italic;
  margin-bottom: 1rem;
}

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

.tg {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--mist);
  color: #4a3f38;
}

.sh {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 650;
  color: var(--pine);
  margin: 2.5rem 0 .5rem;
}

.sl {
  height: 2px;
  background: rgba(21, 62, 52, 0.12);
  margin-bottom: 2.5rem
}

.split2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-bottom: 3rem
}

.mini h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--pine);
  margin-bottom: .5rem
}

.mini p {
  font-size: .97rem;
  line-height: 1.7;
  color: rgba(16, 22, 21, 0.75)
}

.note {
  background: #f0e9df;
  border-radius: 4px;
  padding: 1.2rem 1.8rem;
  font-size: .88rem;
  line-height: 1.7;
  color: #4a3f38;
  margin-bottom: 2.5rem;
}

.spg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem
}

.spc {
  background: #fff;
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(42, 36, 32, 0.07)
}

.sph {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .7rem
}

.spa {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.spu {
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink);
  display: block
}

.spp {
  font-size: .66rem;
  color: rgba(16, 22, 21, 0.5);
  display: block
}

.spt {
  font-size: .86rem;
  line-height: 1.65;
  color: #4a3f38;
  margin-bottom: .5rem
}

.sptg {
  font-size: .64rem;
  color: var(--river);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .3rem
}

.spd {
  font-size: .62rem;
  color: rgba(16, 22, 21, 0.4)
}

.cta {
  background-color: #153e34;
  background: var(--pine);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  text-align: center;
  color: #fff
}

.cta h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: .8rem;
  color: #fff
}

.cta p {
  font-size: .99rem;
  line-height: 1.7;
  opacity: .85;
  margin: 0 auto 1.5rem
}

.hps {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center
}

.hp {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.conduct-card p {
  font-size: .89rem
}

.rm-text {
  overflow: hidden;
  transition: max-height .4s ease
}

.rm-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--river);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: .5rem;
}

.rm-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform .3s
}

.rm-btn.open svg {
  transform: rotate(180deg)
}

@media(max-width:1080px) {
  .nav-links {
    gap: .7rem
  }

  .nav-links a {
    font-size: .62rem
  }
}

@media(max-width:940px) {

  .nav-links,
  .journey-link {
    display: none
  }

  .menu-btn {
    display: flex
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .opening-grid,
  .page-grid,
  .people-band .wrap,
  .memory-grid,
  .travel-grid,
  .essay-head,
  .sources-grid,
  .next-grid,
  .war-grid,
  .war-reading-grid,
  .war-section-head {
    grid-template-columns: 1fr;
  }

  .deep-grid,
  .two-column,
  .people-portrait {
    grid-template-columns: 1fr;
  }

  .story-links {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .war-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .image-strip {
    grid-template-columns: 1fr
  }

  .image-strip figure {
    min-height: 330px
  }

  .war-place.wide {
    grid-template-columns: 1fr;
  }

  .route-section::before {
    left: calc(clamp(1.15rem, 5vw, 4rem) + 21px)
  }

  .route-stop {
    grid-template-columns: 42px 1fr
  }

  .route-stop:nth-child(even) .stop-text,
  .route-stop .stop-text {
    grid-column: 2
  }

  .route-stop:nth-child(even) .stop-empty,
  .stop-empty {
    display: none
  }

  .dot {
    grid-column: 1
  }

  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr
  }

  .split-feature.reverse .feature-copy,
  .split-feature.reverse .feature-image {
    order: initial
  }

  .feature-copy {
    padding: 3.5rem clamp(1.15rem, 5vw, 4rem)
  }

  .feature-image,
  .portrait-image {
    min-height: 420px
  }
}

@media(max-width:640px) {
  :root {
    --nav-h: 64px
  }

  .topbar {
    height: 64px
  }

  .brand {
    font-size: .7rem;
    letter-spacing: .12em
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.4rem)
  }

  .hero-inner {
    padding-bottom: 1.3rem
  }

  .hero-meta,
  .story-links,
  .quiet-grid,
  .travel-notes,
  .essay-grid,
  .source-links,
  .war-facts,
  .war-timeline,
  .war-place-grid,
  .fact-cards,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta div,
  .quiet-item,
  .travel-note,
  .war-facts div,
  .war-timeline article,
  .fact-cards article,
  .check-grid div {
    min-height: auto
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .image-strip figure {
    min-height: 260px
  }

  .war-place {
    grid-template-rows: minmax(240px, 72vw) auto
  }

  .essay-large,
  .essay-small {
    min-height: 260px
  }

  .caption {
    max-width: 100%;
    font-size: .62rem
  }

  .pq {
    padding: 1.5rem 1.2rem
  }

  .pq p {
    font-size: 1.05rem
  }

  .sw {
    padding: 1.2rem 1rem
  }

  .sbn {
    min-height: 170px
  }

  .sbm {
    left: 1rem;
    top: auto;
    bottom: 1rem;
    transform: none
  }

  .stc-wrap .stc:nth-child(even) .sbm {
    right: 1rem;
    bottom: 1rem
  }

  .ph-hdr {
    height: clamp(280px, 44vh, 440px)
  }

  .ph-hdr-c {
    padding: 2rem 1.2rem
  }

}