/* ==========================================================
   bechinteresting.com — Chin Weerappuli
   Palette: midnight ink / warm bone / maize
   Type: Newsreader (display) · Public Sans (body) · IBM Plex Mono (utility)
   ========================================================== */

:root {
  --ink: #081321;
  --ink-soft: #102136;
  --paper: #f6f3ec;
  --paper-deep: #ede8dc;
  --maize: #f3c63f;
  --maize-deep: #a97f06;
  --slate: #56636f;
  --line: rgba(8, 19, 33, 0.14);
  --line-light: rgba(246, 243, 236, 0.18);
  --max: 1120px;
  --header-h: 68px;
  --display: "Newsreader", Georgia, serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--maize); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 560px) { .wrap { padding: 0 20px; } }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--maize);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 6px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- utility type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maize-deep);
}
.hero .eyebrow, .cta-band .eyebrow { color: var(--maize); }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.9);
  background: rgba(8, 19, 33, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.brand em { font-style: italic; color: var(--maize); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  opacity: 0.82;
  padding: 10px 10px;
  transition: opacity 0.15s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 2px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .nav-cta {
  border: 1px solid var(--maize);
  border-radius: 999px;
  padding: 9px 18px;
  margin-left: 10px;
  color: var(--maize);
  opacity: 1;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--maize); color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--maize); color: var(--maize); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-light);
    padding: 6px 24px 24px;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line-light); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0;
    font-size: 1.05rem;
    opacity: 1;
  }
  .nav-links a::after { left: 0; right: auto; width: 22px; bottom: 12px; }
  .nav-links .nav-cta {
    justify-content: center;
    margin: 18px 0 0;
    min-height: 52px;
  }
}

/* ---------- hero ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 85% 0%, rgba(243, 198, 63, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(246,243,236,0.04), transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--maize), transparent);
  opacity: 0.6;
}
.hero .wrap { position: relative; }
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 18px 0 22px;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--maize); }
.hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  max-width: 52ch;
  color: rgba(246, 243, 236, 0.84);
}
.route {
  font-family: var(--mono);
  font-size: clamp(0.6rem, 2.6vw, 0.76rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--maize);
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 10px;
}
.route abbr, .city-row abbr { text-decoration: none; border: 0; cursor: help; }
.route span { opacity: 0.5; color: var(--paper); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.portrait { position: relative; }
.portrait img {
  border-radius: 4px;
  width: 100%;
  background: var(--ink-soft);
  position: relative;
  z-index: 1;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--maize);
  border-radius: 4px;
  opacity: 0.55;
}
@media (max-width: 880px) {
  .hero { padding: 52px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait { max-width: 420px; }
  .portrait::after { inset: 10px -10px -10px 10px; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0 28px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--maize); color: var(--ink); }
.btn-solid:hover { background: #ffd75e; }
.btn-ghost { border: 1px solid var(--line-light); color: var(--paper); }
.btn-ghost:hover { border-color: var(--maize); color: var(--maize); }
.on-paper .btn-ghost { border-color: var(--line); color: var(--ink); }
.on-paper .btn-ghost:hover { border-color: var(--maize-deep); color: var(--maize-deep); }
@media (max-width: 420px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}

/* ---------- page hero (interior) ---------- */
.page-hero { padding: 68px 0 60px; }
.page-hero h1 { max-width: 20ch; }
.page-hero p.lede { margin-top: 12px; }
@media (max-width: 880px) { .page-hero { padding: 44px 0 46px; } }

/* ---------- sub navigation ---------- */
.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.subnav-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--slate);
  padding: 16px 14px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.subnav a:first-child { margin-left: -14px; }
.subnav a:hover { color: var(--ink); }
.subnav a.is-active { color: var(--ink); border-bottom-color: var(--maize); }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section.tint { background: var(--paper-deep); }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-top: 12px;
}
.section-head h2 em { font-style: italic; }
@media (max-width: 700px) { .section { padding: 56px 0; } }

/* ---------- now strip ---------- */
.now-strip { background: var(--ink-soft); color: var(--paper); padding: 0; }
.now-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line-light);
}
.now-grid > div {
  padding: 30px 28px;
  border-right: 1px solid var(--line-light);
}
.now-grid dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maize);
}
.now-grid dd {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.3;
  margin-top: 8px;
}
.now-grid dd small {
  display: block;
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(246, 243, 236, 0.62);
  margin-top: 8px;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .now-grid { grid-template-columns: 1fr; border-left: none; }
  .now-grid > div { border-right: none; border-bottom: 1px solid var(--line-light); padding: 22px 0; }
  .now-grid > div:last-child { border-bottom: none; }
  .now-strip .wrap { padding-top: 8px; padding-bottom: 8px; }
}

/* ---------- media rows ---------- */
.media-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 60px);
}
.media-row:first-of-type { border-top: none; padding-top: 0; }
.media-row.flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.media-row.flip figure { order: 2; }
.media-row figure img {
  border-radius: 4px;
  width: 100%;
  object-fit: cover;
  background: var(--paper-deep);
}
.media-row figure:not(.logo) img { cursor: zoom-in; }
.media-row figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 12px;
}
.media-row h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  line-height: 1.2;
  margin: 10px 0 16px;
}
.media-row p + p { margin-top: 14px; }
.media-row ul { margin: 14px 0 0 20px; }
.media-row ul li + li { margin-top: 10px; }
.figure-note { }
.logo img {
  max-height: 220px;
  width: auto;
  margin: 0 auto;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.text-link {
  font-weight: 600;
  color: var(--maize-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.text-link:hover { color: var(--ink); }
.link-row { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 20px; }
@media (max-width: 880px) {
  .media-row, .media-row.flip { grid-template-columns: 1fr; gap: 26px; padding: 40px 0; }
  .media-row.flip figure { order: 0; }
}

/* ---------- cards (home) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 26px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--maize-deep);
  box-shadow: 0 18px 40px -32px rgba(8, 19, 33, 0.7);
}
.card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
}
.card p { font-size: 0.95rem; color: var(--slate); }
.card .go {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maize-deep);
}
.card:hover .go { color: var(--ink); }

/* ---------- highlight list ---------- */
.highlights {
  columns: 2;
  column-gap: 52px;
  list-style: none;
}
.highlights li {
  break-inside: avoid;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.highlights li:hover { transform: translateX(8px); background: rgba(255, 203, 5, 0.07); }
.highlights li::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 1px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.highlights li:hover::after { transform: scaleX(1); }
.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--maize);
  transition: transform 0.3s var(--ease);
}
.highlights li:hover::before { transform: rotate(45deg) scale(1.15); }
@media (prefers-reduced-motion: reduce) {
  .highlights li, .highlights li::before, .highlights li::after { transition: none; }
  .highlights li:hover { transform: none; }
}
@media (max-width: 760px) { .highlights { columns: 1; } }

/* ---------- background spotlight ---------- */
.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 40px 56px;
  align-items: start;
}
.spot-list { list-style: none; }
.spot-list li { border-bottom: 1px solid var(--line); }
.spot-list button {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 15px 12px 15px 26px;
  position: relative;
  font: inherit;
  line-height: 1.5;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.spot-list button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--maize);
  transition: transform 0.3s var(--ease);
}
.spot-list button:hover { transform: translateX(8px); background: rgba(255, 203, 5, 0.07); }
.spot-list button:hover::before { transform: rotate(45deg) scale(1.15); }
.spot-list button:focus-visible { outline: 2px solid var(--maize); outline-offset: 2px; }
.spot-list button.is-active {
  background: rgba(255, 203, 5, 0.12);
  font-weight: 600;
  transform: translateX(8px);
}
.spot-list button.is-active::before { transform: rotate(45deg) scale(1.15); }
.spot-panel {
  position: sticky;
  top: calc(var(--header-h, 72px) + 24px);
  margin: 0;
}
.spot-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.spot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease);
}
.spot-media img[src*="nyc-marathon"] { object-position: 50% 0%; }
.spot-panel.is-switching .spot-media img { opacity: 0; transform: scale(1.02); }
.spot-panel figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
}
.spot-note { font-size: 1rem; line-height: 1.5; }
.spot-link { white-space: nowrap; }
.spot-link[hidden] { display: none; }
@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; }
  .spot-panel { position: static; order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .spot-list button, .spot-list button::before, .spot-media img { transition: none; }
  .spot-list button:hover { transform: none; }
}

/* ---------- timeline ---------- */
.timeline { list-style: none; position: relative; margin-top: 8px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--line);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 16px 0 16px 34px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--maize-deep);
}
.timeline li.is-now::before { background: var(--maize); border-color: var(--maize-deep); }
.timeline .yr {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--maize-deep);
  padding-top: 4px;
}
.timeline .what { font-size: 1.02rem; }
@media (max-width: 620px) {
  .timeline li { grid-template-columns: 1fr; gap: 4px; padding-left: 30px; }
  .timeline li::before { top: 22px; }
}

/* ---------- journey ---------- */
.journey {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.journey > * { outline: 1px solid var(--line); }
.step {
  background: var(--paper);
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step p { font-size: 1rem; line-height: 1.55; }
.step .step-link { display: flex; flex-direction: column; gap: 20px; flex: 1; color: inherit; text-decoration: none; }
.step { position: relative; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.step.is-in::before { transform: scaleX(1); transition-delay: inherit; }
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(8, 19, 33, 0.14);
  z-index: 1;
}
.step:has(.step-link:hover) { filter: brightness(0.99); }
.step .logo-slot { transition: transform 0.35s var(--ease); }
.step:hover .logo-slot { transform: translateY(-3px) rotate(-1.2deg) scale(1.03); }
@media (prefers-reduced-motion: reduce) {
  .step, .step .logo-slot { transition: none; }
  .step:hover { transform: none; box-shadow: none; }
  .step:hover .logo-slot { transform: none; }
  .step::before { transform: scaleX(1); }
}
.logo-slot {
  height: 76px;
  border-radius: 4px;
  background-color: #fff;
  background-image: repeating-linear-gradient(135deg, rgba(8,19,33,0.05) 0 6px, transparent 6px 12px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 8px 12px;
}
.logo-slot::after {
  content: attr(data-slot);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  line-height: 1.4;
}
.logo-slot img { max-height: 56px; width: auto; object-fit: contain; }
.logo-slot.on-dark { background-color: #00274c; border-color: #00274c; }
.logo-slot.on-dark img { max-height: 52px; }
.logo-slot img[src*="michigan-football"] { max-height: 48px; }
.logo-slot img[src*="university-of-michigan"] { max-height: 40px; }
.logo-slot img[src*="michigan-ross"] { max-height: 30px; }
.logo-slot img[src*="ignitedata"] { max-height: 36px; }
.logo-slot img[src*="johns-hopkins"] { max-height: 62px; }
.logo-slot img[src*="hail-impact"] { max-height: 60px; }
.logo-slot img[src*="pure-michigan"] { max-height: 34px; }
.logo-slot:has(img) { background-image: none; }
.logo-slot:has(img)::after { display: none; }
.cities {
  grid-column: 1 / -1;
  background: var(--ink);
  color: var(--paper);
  padding: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px 28px;
}
.cities .eyebrow { color: var(--maize); }
.city-row {
  font-family: var(--display);
  font-size: clamp(0.85rem, 4vw, 1.9rem);
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 clamp(5px, 1.4vw, 18px);
  align-items: center;
}
.city-row span { color: var(--maize); font-size: 0.8em; }
@media (max-width: 860px) { .journey { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) {
  .route { gap: 0 4px; letter-spacing: 0.02em; font-size: clamp(0.45rem, 2.25vw, 0.76rem); }
  .city-row { gap: 0 4px; letter-spacing: 0; font-size: clamp(0.6rem, 3.1vw, 1.9rem); }
  .cities { padding: 22px 14px; gap: 6px 14px; }
  .journey { grid-template-columns: 1fr; }
  .step { padding: 24px 22px 26px; }
}

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; list-style: none; }
.chips li {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--slate);
}

/* ---------- video embed ---------- */
.video-embed iframe {
  width: 100%;
  aspect-ratio: 504 / 593;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

/* ---------- photo gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 60px);
}
.gallery-head { grid-column: 1 / -1; }
.gallery figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: var(--paper-deep);
  cursor: zoom-in;
}
.gallery figcaption {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 10px;
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- pull quote ---------- */
.pull {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 84px 24px;
  position: relative;
}
.pull blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  max-width: 28ch;
  margin: 0 auto;
}
.pull cite {
  display: block;
  margin-top: 20px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maize);
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 20px;
  margin-top: 34px;
}
.stat { border-left: 3px solid var(--maize); padding: 4px 0 4px 16px; }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.1;
}
.stat span { font-size: 0.85rem; color: var(--slate); line-height: 1.45; display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 84px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin: 12px 0 10px;
}
.cta-band p { max-width: 48ch; margin: 0 auto; color: rgba(246, 243, 236, 0.82); }
.cta-band .btn-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 54px 0 28px;
  border-top: 1px solid var(--line-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
.footer-brand p {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maize);
  margin-top: 10px;
}
.footer-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--paper); text-decoration: none; font-size: 0.95rem; opacity: 0.85; }
.site-footer a:hover { color: var(--maize); opacity: 1; }
.site-footer .brand { font-size: 1.3rem; opacity: 1; }
.footer-fine {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding-top: 22px;
}
.site-footer .fine {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 19, 33, 0.94);
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { max-width: min(1000px, 100%); }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: 4px;
}
.lightbox figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maize);
  text-align: center;
  margin-top: 16px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: none;
  color: var(--paper);
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--maize); color: var(--maize); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); }
.journey .reveal { transform: translateY(30px) scale(0.985); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.journey .step.is-in { transition: opacity 0.6s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }

/* ---------- embed ---------- */
.embed {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.embed iframe { width: 100%; height: clamp(620px, 78vh, 900px); border: 0; display: block; }

/* ---------- focus ---------- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--maize);
  outline-offset: 3px;
  border-radius: 2px;
}

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

@media print {
  .site-header, .subnav, .cta-band, .lightbox, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .pull, .site-footer { background: #fff !important; color: #000 !important; }
}


/* ---------- travel / globe ---------- */
.globe-band { background: var(--ink-soft); color: var(--paper); padding: 56px 0 64px; }
.globe-wrap { position: relative; max-width: 640px; margin: 0 auto; touch-action: none; }
#globe svg { user-select: none; -webkit-user-select: none; }
.globe-tip {
  position: absolute; z-index: 5; pointer-events: none;
  background: var(--paper); color: var(--ink);
  padding: 10px 14px; border-radius: 4px; max-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.globe-tip strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: 6px; }
.globe-tip span { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; }
.globe-tip em { display: block; font-style: normal; font-size: 0.78rem; color: rgba(8,19,33,0.65); margin-top: 5px; }
.globe-hint {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: fit-content; margin: 22px auto 0; padding: 9px 20px;
  border: 1px solid rgba(246,243,236,0.18); border-radius: 999px;
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,243,236,0.65);
}
.globe-hint::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--maize); flex: none;
  animation: hint-pulse 2.2s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,203,5,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(255,203,5,0); }
}
.travel-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; max-width: 560px; margin: 40px auto 0;
}
.travel-stats > div {
  position: relative; text-align: center;
  border: 1px solid rgba(246,243,236,0.14); border-radius: 6px;
  padding: 26px 18px 24px;
  background: linear-gradient(180deg, rgba(246,243,236,0.05), rgba(246,243,236,0.015));
}
.travel-stats > div::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  width: 44px; height: 3px; background: var(--maize);
}
.travel-stats dt {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(246,243,236,0.55);
}
.travel-stats dd { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 3.4rem); line-height: 1; margin-top: 12px; color: var(--maize); }
.travel-stats dd small { display: block; font-family: var(--body); font-size: 0.78rem; color: rgba(246,243,236,0.6); margin-top: 2px; }
.travel-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 16px;
}
.travel-item {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--paper); border: 1px solid rgba(8,19,33,0.12);
  border-top: 3px solid var(--maize);
  padding: 18px 20px 20px; border-radius: 6px;
  box-shadow: 0 1px 3px rgba(8,19,33,0.06);
}
.travel-item strong { display: block; font-family: var(--display); font-size: 1.15rem; line-height: 1.2; }
.travel-item span {
  display: block; width: fit-content;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--ink); background: rgba(255,203,5,0.28);
  padding: 3px 9px; border-radius: 999px;
}
.travel-item em {
  display: block; font-style: normal; font-size: 0.82rem; line-height: 1.5;
  color: rgba(8,19,33,0.6);
  border-top: 1px solid rgba(8,19,33,0.08); padding-top: 8px; margin-top: 2px;
}


/* ---------- impact stats (professional) ---------- */
.impact-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px; margin-top: 26px;
}
.impact-stats > div {
  border: 1px solid rgba(8,19,33,0.12); border-left: 3px solid var(--maize);
  border-radius: 4px; padding: 16px 18px 15px;
  background: rgba(8,19,33,0.02);
}
.impact-stats dd { font-family: var(--display); font-size: 1.9rem; line-height: 1; }
.impact-stats dd span { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(8,19,33,0.55); margin-left: 6px; }
.impact-stats dt {
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(8,19,33,0.55); margin-top: 8px; line-height: 1.5;
}
@media (max-width: 560px) {
  .impact-stats { gap: 10px; }
  .impact-stats > div { padding: 14px 12px 13px; }
  .impact-stats dd { font-size: 1.55rem; }
  .impact-stats dd span { display: block; margin: 4px 0 0; }
  .impact-stats dt { font-size: 0.58rem; letter-spacing: 0.1em; }
}


/* ---------- ruled two-column lists (professional) ---------- */
.rule-list {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
}
.rule-list li {
  padding: 9px 0 9px 16px; position: relative;
  border-bottom: 1px solid rgba(8,19,33,0.1);
  font-size: 0.92rem; line-height: 1.4;
}
.rule-list li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; transform: translateY(-50%);
  background: var(--maize);
}
@media (max-width: 560px) { .rule-list li { font-size: 0.85rem; padding: 8px 0 8px 14px; } }


/* ---------- photo strip (professional) ---------- */
.photo-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 16px; margin-top: 28px;
}
.photo-strip figure { margin: 0; }
.photo-strip img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 4px; display: block;
}
.photo-strip figcaption {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(8,19,33,0.55); margin-top: 8px;
}
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr; } }


/* ---------- mobile polish: professional & travel ---------- */
@media (max-width: 700px) {
  /* each job reads as a framed card instead of floating text */
  .media-row {
    display: block;
    background: var(--paper);
    border: 1px solid rgba(8,19,33,0.12);
    border-top: 3px solid var(--maize);
    border-radius: 6px;
    padding: 22px 20px 26px;
    margin: 26px 0 0;
    box-shadow: 0 1px 3px rgba(8,19,33,0.06);
  }
  .media-row:first-of-type { margin-top: 0; padding-top: 22px; }
  .media-row figure { margin: 0 0 18px; }
  .media-row.flip figure { order: 0; }
  .photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
  .photo-strip figcaption { font-size: 0.56rem; letter-spacing: 0.06em; margin-top: 6px; }
  /* travel: two compact cards per row */
  .travel-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .travel-item { padding: 14px 14px 16px; gap: 7px; }
  .travel-item strong { font-size: 0.98rem; }
  .travel-item span { font-size: 0.6rem; padding: 2px 8px; }
  .travel-item em { font-size: 0.74rem; }
  .travel-stats { gap: 10px; margin-top: 30px; }
  .travel-stats > div { padding: 20px 14px 18px; }
}
