:root {
  --bg: #f6f3ed;
  --surface: rgba(255, 252, 247, 0.92);
  --surface-strong: #fffdf8;
  --ink: #1d2521;
  --muted: #59675f;
  --accent: #2f5b52;
  --accent-dark: #1d3a35;
  --sand: #cfb792;
  --line: rgba(29, 37, 33, 0.12);
  --shadow: 0 18px 40px rgba(29, 37, 33, 0.08);
  --shadow-strong: 0 30px 70px rgba(29, 37, 33, 0.16);
  --content-width: min(1180px, calc(100vw - 2rem));
  --content-narrow: min(900px, calc(100vw - 2rem));
  --radius: 1.5rem;
  --radius-large: 2rem;
  --nav-height: 5.25rem;
  --font-display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --type-label: 0.84rem;
  --type-small: 0.94rem;
  --type-body: 1.0625rem;
  --type-lede: 1.18rem;
  --type-card-title: 1.55rem;
  --type-route-title: 1.52rem;
  --type-section-heading: clamp(2.15rem, 4.5vw, 3.35rem);
  --type-display: clamp(3rem, 8vw, 6.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(207, 183, 146, 0.24), transparent 28rem),
    linear-gradient(180deg, #f3efe8 0%, var(--bg) 42%, #f8f6f1 100%);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.68;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: auto;
  image-rendering: smooth;
  -ms-interpolation-mode: bicubic;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(246, 243, 237, 0.92), rgba(246, 243, 237, 0.68));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(29, 37, 33, 0.08);
}

.nav-shell,
.footer-shell,
.section,
.hero__content {
  width: var(--content-width);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-mark,
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.site-nav__label {
  color: rgba(93, 105, 114, 0.8);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-divider {
  color: rgba(29, 37, 33, 0.28);
}

.nav-toggle {
  display: none;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
}

.hero {
  position: relative;
  margin: 0 auto;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  align-items: end;
  padding: 7rem 0 3rem;
  background-size: cover;
  background-position: center;
  background-color: #1d2521;
  color: #f8f5ef;
  image-rendering: auto;
  image-rendering: smooth;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 17, 0.18) 0%, rgba(12, 18, 17, 0.52) 58%, rgba(12, 18, 17, 0.7) 100%),
    linear-gradient(90deg, rgba(12, 18, 17, 0.64) 0%, rgba(12, 18, 17, 0.2) 58%, rgba(12, 18, 17, 0.08) 100%);
}

.hero--short {
  min-height: 34rem;
}

.hero--home {
  background-image: url("front.jpg");
}

.hero--publications {
  background-image: url("pubs.jpg");
}

.hero--fieldwork {
  background-image: url("fieldwork.jpg");
}

.hero--team {
  background-image: url("gps.jpg");
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 1.5rem;
}

.hero__eyebrow,
.section-kicker,
.person-role,
.album-card__meta {
  margin: 0 0 0.75rem;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: rgba(248, 245, 239, 0.8);
}

.hero__title,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}

.hero__title {
  max-width: 12ch;
  font-size: var(--type-display);
}

.hero__lede,
.section-heading p,
.paper-summary,
.album-card p,
.person-card p,
.footer-copy {
  color: var(--muted);
}

.hero__lede {
  max-width: 40rem;
  margin: 1rem 0 0;
  color: rgba(248, 245, 239, 0.9);
  font-size: var(--type-lede);
  line-height: 1.62;
}

.hero__actions,
.section-actions,
.footer-links,
.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__actions {
  margin-top: 1.75rem;
}

.archive-preview-section .section-actions {
  margin-top: clamp(1.75rem, 3vw, 2.45rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #f8f5ef;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow);
}

.button:hover {
  color: #f8f5ef;
  background: var(--accent-dark);
}

.button--ghost {
  border-color: rgba(248, 245, 239, 0.28);
  background: #1d2521;
  backdrop-filter: blur(8px);
}

.button--surface {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-dark);
}

.button--surface:hover {
  color: #f8f5ef;
  background: var(--accent-dark);
}

.section {
  padding: 4rem 0 0;
}

.section--tight {
  padding-top: 2rem;
}

.section-heading {
  width: min(48rem, 100%);
  margin-bottom: 1.75rem;
}

.section-kicker {
  color: var(--accent);
}

.section-heading h2 {
  font-size: var(--type-section-heading);
}

.section-heading p:not(.section-kicker) {
  max-width: 68ch;
  font-size: var(--type-lede);
  line-height: 1.62;
}

.album-grid,
.people-grid {
  display: grid;
  gap: 1.4rem;
}

.paper-card,
.album-card,
.person-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.paper-card,
.album-card__body,
.person-card__body {
  padding: 1.35rem;
}

.paper-title,
.album-card h3,
.person-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  line-height: 1.2;
}

.paper-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.paper-card[hidden] {
  display: none;
}

.paper-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.paper-year {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-link,
.text-link {
  color: var(--accent);
  font-weight: 700;
}

.paper-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.18rem 0.55rem;
  border: 1px solid oklch(42% 0.055 176 / 0.28);
  border-radius: 999px;
  background: oklch(99% 0.007 84 / 0.62);
  color: var(--accent-dark);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    color 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.paper-link:hover {
  border-color: oklch(42% 0.055 176 / 0.5);
  background: oklch(95% 0.018 84);
  color: var(--accent-dark);
}

.paper-authors,
.paper-journal {
  margin: 0.35rem 0 0;
}

.paper-journal {
  font-style: italic;
}

.paper-summary {
  max-width: 70ch;
  margin: 0.75rem 0 0;
}

.paper-summary,
.paper-authors,
.paper-journal,
.album-card p,
.person-card p,
.footer-copy {
  font-size: var(--type-body);
  line-height: 1.62;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 0.28rem 0.52rem;
  border-radius: 999px;
  background: rgba(47, 91, 82, 0.09);
  color: var(--accent-dark);
  font-size: 0.88rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.filter-chip {
  min-height: 2.45rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.filter-chip:hover {
  border-color: oklch(42% 0.055 176 / 0.32);
  color: var(--accent-dark);
}

.filter-chip:active {
  transform: translateY(1px);
}

.filter-chip.is-active {
  background: var(--accent);
  color: #f8f5ef;
  border-color: var(--accent);
}

.album-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.album-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.album-card,
.person-card {
  overflow: hidden;
}

.album-card__image,
.person-card img {
  display: block;
}

.album-card__image img,
.person-card img {
  width: 100%;
  object-fit: cover;
}

.album-card__image img {
  aspect-ratio: 4 / 3;
}

.person-card__body {
  padding: 1.1rem;
  font-size: var(--type-body);
}

.person-card img {
  aspect-ratio: 4 / 2.65;
}

.person-card--blake img {
  object-position: 50% 24%;
}

.hero--gallery .hero__title {
  max-width: min(14ch, 100%);
}

.hero--gallery {
  background-color: #1d2521;
  color: #f8f5ef;
}

.hero--gallery .button {
  background: #2f5b52;
  color: #f8f5ef;
}

.hero--gallery .button--ghost {
  background: #1d2521;
}

.section-heading--compact {
  width: 100%;
  margin: 0;
}

.gallery-count {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1;
}

.gallery-count {
  color: var(--muted);
}

.gallery-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.gallery-count {
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
}

.gallery-card {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery-card__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.05rem 1.1rem 1.12rem;
}

.gallery-card__caption,
.gallery-card__meta {
  margin: 0;
}

.gallery-card__caption {
  min-height: 4.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.gallery-card__caption.is-empty {
  visibility: hidden;
}

.gallery-card__meta {
  margin-top: auto;
  padding-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 21, 20, 0.84);
  backdrop-filter: blur(10px);
}

.lightbox__frame {
  width: min(1100px, 100%);
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  background: rgba(18, 22, 20, 0.94);
  color: oklch(96% 0.01 86);
  box-shadow: var(--shadow-strong);
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: oklch(96% 0.01 86);
  cursor: pointer;
}

.lightbox__close {
  justify-self: end;
  padding: 0.55rem 0.9rem;
}

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

.lightbox__stage img {
  width: 100%;
  max-height: min(72vh, 900px);
  object-fit: contain;
  border-radius: 1rem;
  background: oklch(12% 0.018 160);
}

.lightbox__nav {
  padding: 0.75rem 0.95rem;
}

.lightbox__caption-wrap {
  display: grid;
  gap: 0.35rem;
  padding: 0 0.35rem 0.35rem;
}

.lightbox__meta,
.lightbox__caption {
  margin: 0;
}

.lightbox__meta {
  color: oklch(86% 0.012 86);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__caption {
  max-width: 68ch;
  line-height: 1.62;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 0 3rem;
}

.site-footer {
  border-top: 1px solid rgba(29, 37, 33, 0.08);
}

.footer-links a,
.person-links a {
  color: var(--muted);
}

.footer-links a:hover,
.person-links a:hover,
.text-link:hover,
.paper-link:hover {
  color: var(--accent-dark);
}

@media (max-width: 960px) {
  .album-grid,
  .album-grid--compact {
    grid-template-columns: 1fr;
  }

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

  .gallery-toolbar {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0.85rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 32rem;
    padding-top: 5rem;
  }

  .hero__title {
    max-width: 100%;
  }

  .lightbox__stage {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .footer-shell,
  .section,
  .hero__content {
    width: min(100vw - 1.2rem, 100%);
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .site-mark {
    font-size: 0.98rem;
    letter-spacing: 0.045em;
  }

  .nav-toggle {
    padding: 0.58rem 0.78rem;
  }

  .hero__lede,
  .section-heading p:not(.section-kicker),
  .atlas-overview__copy p:last-child,
  .people-heart__statement p:not(.section-kicker) {
    font-size: 1.08rem;
  }

  .section {
    padding-top: 3rem;
  }

  .paper-card,
  .album-card__body,
  .person-card__body,
  .people-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    padding-bottom: 2.2rem;
  }

  .lightbox {
    padding: 0.65rem;
  }

  .lightbox__frame {
    padding: 0.75rem;
  }
}

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

  .publication-overview__detail,
  .publication-overview__dot,
  .publication-overview__label,
  .publication-overview__stem,
  .publication-entry {
    transition: none;
  }
}

/* Impeccable whole-site atlas direction */
:root {
  --bg: oklch(96.2% 0.012 84);
  --surface: oklch(98% 0.009 84 / 0.9);
  --surface-strong: oklch(99% 0.007 84);
  --ink: oklch(23% 0.018 160);
  --muted: oklch(45% 0.022 160);
  --accent: oklch(42% 0.055 176);
  --accent-dark: oklch(29% 0.044 176);
  --sand: oklch(78% 0.061 78);
  --line: oklch(23% 0.018 160 / 0.14);
  --field-shadow: 0 18px 44px oklch(23% 0.018 160 / 0.08);
  --focus-ring: oklch(58% 0.085 176 / 0.42);
}

body {
  background:
    linear-gradient(180deg, oklch(94% 0.017 82) 0%, var(--bg) 38%, oklch(97% 0.008 84) 100%);
  font-kerning: normal;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

p,
li {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 0.55rem;
  background: var(--accent-dark);
  color: #f8f5ef;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

.site-header {
  background:
    linear-gradient(180deg, oklch(96.2% 0.012 84 / 0.95), oklch(96.2% 0.012 84 / 0.74));
}

.site-nav a,
.footer-links a,
.person-links a {
  text-underline-offset: 0.18em;
}

.site-nav a:hover,
.footer-links a:hover,
.person-links a:hover,
.text-link:hover {
  text-decoration: underline;
}

.section-heading--wide {
  width: min(68rem, 100%);
}

.atlas-hero {
  min-height: clamp(34rem, 72svh, 48rem);
  align-items: end;
  padding-bottom: 0;
}

.atlas-hero::before {
  background:
    linear-gradient(180deg, rgba(11, 16, 15, 0.12) 0%, rgba(11, 16, 15, 0.52) 56%, rgba(11, 16, 15, 0.82) 100%),
    linear-gradient(90deg, rgba(11, 16, 15, 0.72) 0%, rgba(11, 16, 15, 0.36) 48%, rgba(11, 16, 15, 0.08) 100%);
}

.atlas-hero__content {
  display: grid;
  gap: 1.05rem;
}

.atlas-hero .hero__title {
  max-width: 8.8ch;
  font-size: clamp(4.35rem, 7.2vw, 6.35rem);
  line-height: 1.02;
}

.atlas-hero .hero__lede {
  max-width: 46rem;
}

.atlas-hero .hero__eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.atlas-hero__people-note {
  width: fit-content;
  max-width: min(38rem, 100%);
  margin: 0.2rem 0 0;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(248, 245, 239, 0.24);
  color: oklch(96% 0.01 86);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.34;
}

.atlas-route__number {
  color: rgba(248, 245, 239, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-atlas {
  --atlas-tile-pad: clamp(1rem, 2.4vw, 1.7rem);
  --atlas-page-gutter: max(var(--atlas-tile-pad), calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(13rem, auto);
  width: 100%;
  margin: 0;
  border-top: 1px solid oklch(94% 0.01 84 / 0.18);
  border-bottom: 1px solid oklch(18% 0.02 160 / 0.24);
  background: oklch(20% 0.026 166);
}

.landing-atlas__panel {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  min-width: 0;
  min-height: 13rem;
  overflow: hidden;
  padding: var(--atlas-tile-pad);
  border-color: oklch(94% 0.01 84 / 0.22);
  border-style: solid;
  border-width: 0 1px 1px 0;
  color: oklch(96% 0.01 86);
  background-position: center;
  background-size: cover;
  isolation: isolate;
  image-rendering: auto;
  image-rendering: smooth;
}

.landing-atlas__panel--research,
.landing-atlas__panel--field {
  padding-left: var(--atlas-page-gutter);
}

.landing-atlas__panel--research {
  padding-right: var(--atlas-page-gutter);
}

.landing-atlas__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, oklch(15% 0.019 160 / 0.1), oklch(15% 0.019 160 / 0.78)),
    linear-gradient(90deg, oklch(13% 0.02 160 / 0.68), oklch(13% 0.02 160 / 0.14));
  transition: background 180ms ease;
  pointer-events: none;
}

.landing-atlas__panel::after {
  content: "";
  position: absolute;
  right: var(--atlas-tile-pad);
  bottom: -0.16em;
  z-index: 0;
  color: oklch(96% 0.01 86 / 0.14);
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 700;
  line-height: 0.82;
  pointer-events: none;
}

.landing-atlas__panel--research {
  grid-column: 1 / -1;
  min-height: 21rem;
  background-image: url("fieldwork.jpg");
}

.landing-atlas__panel--research::after {
  content: "01";
  right: var(--atlas-page-gutter);
  font-size: clamp(9rem, 17vw, 19rem);
}

.landing-atlas__panel--field {
  grid-column: 1 / 5;
  background-image: url("https://earth-history-uvic.s3.us-west-004.backblazeb2.com/web/2022/06/13/12575413.jpg");
}

.landing-atlas__panel--field::after {
  content: "02";
}

.landing-atlas__panel--papers {
  grid-column: 5 / 8;
  background-image: url("pubs.jpg");
}

.landing-atlas__panel--papers::after {
  content: "03";
}

.landing-atlas__panel--team {
  grid-column: 8 / -1;
  padding-right: var(--atlas-page-gutter);
  background-image: url("gps.jpg");
}

.landing-atlas__panel--team::after {
  content: "04";
  right: var(--atlas-page-gutter);
}

.landing-atlas__label {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  color: oklch(96% 0.01 86 / 0.86);
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: break-word;
}

.landing-atlas__title {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: min(24rem, 100%);
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2.1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.08;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  transition: transform 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.landing-atlas__panel--research .landing-atlas__title {
  max-width: min(12ch, 100%);
  font-size: clamp(2.35rem, 4.9vw, 4.8rem);
  line-height: 0.98;
}

.people-heart {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 0.86fr);
  gap: clamp(1.5rem, 4vw, 3.4rem);
  align-items: stretch;
  width: 100%;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100vw - 1180px) / 2));
  color: oklch(96% 0.01 86);
  background:
    linear-gradient(135deg, oklch(22% 0.032 170) 0%, oklch(16% 0.02 160) 100%);
}

.people-heart__portraits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(12rem, 1fr));
  gap: 1px;
  align-self: center;
  min-height: 34rem;
  border: 1px solid oklch(96% 0.01 86 / 0.18);
  background: oklch(15% 0.019 160);
}

.people-heart__portraits img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.people-heart__portraits img:nth-child(1) {
  grid-column: 1 / 4;
  object-position: 50% 34%;
}

.people-heart__portraits img:nth-child(2) {
  grid-column: 4 / -1;
  object-position: 25% 50%;
}

.people-heart__portraits img:nth-child(3) {
  grid-column: 1 / 3;
  object-position: 70% 50%;
}

.people-heart__portraits img:nth-child(4) {
  grid-column: 3 / 5;
  object-position: 52% 50%;
}

.people-heart__portraits img:nth-child(5) {
  grid-column: 5 / -1;
  object-position: 38% 50%;
}

.people-heart__portraits img + img {
  border-left: 0;
}

.people-heart__statement {
  align-self: center;
}

.people-heart__statement h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
}

.people-heart__statement p:not(.section-kicker) {
  max-width: 68ch;
  color: oklch(90% 0.012 86 / 0.84);
  font-size: var(--type-lede);
  line-height: 1.66;
}

.people-heart__statement a:not(.button) {
  color: oklch(92% 0.035 78);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.people-heart .section-kicker {
  color: oklch(84% 0.06 76);
}

.people-heart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.people-heart .button--surface {
  background: oklch(96% 0.01 86);
  color: var(--accent-dark);
}

.atlas-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.atlas-overview__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.06;
}

.people-heart + .atlas-overview {
  padding-top: clamp(3rem, 6vw, 5.5rem);
}

.atlas-overview__copy p:last-child {
  color: var(--muted);
  max-width: 64ch;
  font-size: var(--type-lede);
  line-height: 1.62;
}

.atlas-route-list {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.atlas-route {
  display: grid;
  grid-template-columns: 3.75rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.atlas-route:hover {
  color: var(--accent-dark);
}

.atlas-route__number {
  color: var(--accent);
}

.atlas-route strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: var(--type-route-title);
  line-height: 1.15;
}

.publication-controls {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(1.25rem, 2.4vw, 2rem);
}

.filter-count,
.empty-state {
  margin: 0;
  color: var(--muted);
}

.empty-state {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.publication-overview {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 0 clamp(1.7rem, 3vw, 2.45rem);
  padding: clamp(1.05rem, 2vw, 1.35rem) 0 clamp(1rem, 2vw, 1.3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.publication-overview:has(.publication-overview__label:hover),
.publication-overview:focus-within,
.publication-overview:has(.publication-overview__event.is-active) {
  z-index: 60;
}

.publication-overview--home {
  margin-bottom: 1.2rem;
}

.publication-overview__frame {
  max-width: 100%;
  padding: 0.2rem 0;
}

.publication-overview__track {
  --timeline-axis-y: 50%;
  --pin-hit-width: clamp(6.35rem, 9vw, 8.45rem);
  --pin-anchor-offset: 1.35rem;
  --pin-dot-size: 0.78rem;
  --pin-dot-offset: calc(var(--pin-anchor-offset) - (var(--pin-dot-size) / 2));
  --pin-base: clamp(1.95rem, 3.2vw, 2.5rem);
  --pin-step: clamp(1.85rem, 2.8vw, 2.45rem);
  position: relative;
  isolation: isolate;
  min-height: clamp(20rem, 34vw, 25.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.publication-overview__track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: var(--timeline-axis-y);
  right: 0.85rem;
  left: 0.85rem;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      oklch(42% 0.055 176 / 0.12),
      oklch(42% 0.055 176 / 0.52) 18%,
      oklch(42% 0.055 176 / 0.52) 82%,
      oklch(42% 0.055 176 / 0.12)
    );
  transform: translateY(-50%);
}

.publication-overview__track::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: var(--timeline-axis-y);
  right: 0;
  width: 0.78rem;
  height: 0.78rem;
  border-top: 2px solid oklch(42% 0.055 176 / 0.68);
  border-right: 2px solid oklch(42% 0.055 176 / 0.68);
  transform: translateY(-50%) rotate(45deg);
}

.publication-overview__event {
  --pin-length: calc(var(--pin-base) + (var(--timeline-lane) * var(--pin-step)));
  position: absolute;
  z-index: auto;
  top: var(--timeline-axis-y);
  left: clamp(3.65rem, var(--timeline-position), calc(100% - 3.65rem));
  width: 0;
  height: 0;
}

.publication-overview__event:hover,
.publication-overview__event:focus-within,
.publication-overview__event.is-active {
  z-index: auto;
}

.publication-overview__pin {
  appearance: none;
  position: absolute;
  left: calc(var(--pin-hit-width) / -2);
  width: var(--pin-hit-width);
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  cursor: pointer;
  pointer-events: none;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.publication-overview__event--above .publication-overview__pin {
  bottom: calc(var(--pin-anchor-offset) * -1);
  height: calc(var(--pin-length) + (var(--pin-anchor-offset) * 2) + 0.15rem);
}

.publication-overview__event--below .publication-overview__pin {
  top: calc(var(--pin-anchor-offset) * -1);
  height: calc(var(--pin-length) + (var(--pin-anchor-offset) * 2) + 0.15rem);
}

.publication-overview__stem,
.publication-overview__dot,
.publication-overview__label,
.publication-overview__detail {
  position: absolute;
}

.publication-overview__stem {
  left: 50%;
  z-index: 1;
  width: 1px;
  height: var(--pin-length);
  background:
    linear-gradient(
      180deg,
      oklch(42% 0.055 176 / 0.14),
      oklch(42% 0.055 176 / 0.66)
    );
  transform: translateX(-50%);
  transition:
    background 180ms cubic-bezier(0.25, 1, 0.5, 1),
    opacity 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.publication-overview__event--above .publication-overview__stem {
  bottom: var(--pin-anchor-offset);
}

.publication-overview__event--below .publication-overview__stem {
  top: var(--pin-anchor-offset);
}

.publication-overview__dot {
  left: 50%;
  z-index: 4;
  width: var(--pin-dot-size);
  height: var(--pin-dot-size);
  border: 2px solid var(--surface-strong);
  border-radius: 999px;
  background: var(--accent);
  box-shadow:
    0 0 0 1px oklch(42% 0.055 176 / 0.48),
    0 0 0 0.38rem oklch(42% 0.055 176 / 0.1);
  transform: translateX(-50%);
  transition:
    background-color 160ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.publication-overview__event--above .publication-overview__dot {
  bottom: var(--pin-dot-offset);
}

.publication-overview__event--below .publication-overview__dot {
  top: var(--pin-dot-offset);
}

.publication-overview__label {
  left: 50%;
  z-index: 8;
  max-width: min(8rem, 100%);
  padding: 0.25rem 0.42rem;
  border: 1px solid oklch(42% 0.055 176 / 0.2);
  border-radius: 999px;
  background: oklch(99% 0.007 84 / 0.88);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1.1;
  overflow: hidden;
  pointer-events: auto;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(-50%);
  transition:
    background-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.publication-overview__event--above .publication-overview__label {
  bottom: calc(var(--pin-length) + 1.68rem);
}

.publication-overview__event--below .publication-overview__label {
  top: calc(var(--pin-length) + 1.68rem);
}

.publication-overview__detail {
  left: 50%;
  z-index: 100;
  width: min(20rem, calc(100vw - 2.2rem));
  padding: 0.9rem 0.95rem 0.96rem;
  border: 1px solid oklch(23% 0.018 160 / 0.16);
  border-radius: 0.4rem;
  background: oklch(99% 0.007 84 / 0.98);
  box-shadow: 0 12px 30px oklch(23% 0.018 160 / 0.14);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, var(--detail-shift, 0.35rem));
  transition:
    opacity 220ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 220ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 220ms cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0s linear 220ms;
  visibility: hidden;
}

.publication-overview__event--above .publication-overview__detail {
  --detail-shift: 0.35rem;
  bottom: calc(var(--pin-length) + 3.25rem);
}

.publication-overview__event--below .publication-overview__detail {
  --detail-shift: -0.35rem;
  top: calc(var(--pin-length) + 3.25rem);
}

.publication-overview__event--edge-start .publication-overview__detail {
  left: 0;
  transform: translate(0, var(--detail-shift, 0.35rem));
}

.publication-overview__event--edge-end .publication-overview__detail {
  right: 0;
  left: auto;
  transform: translate(0, var(--detail-shift, 0.35rem));
}

.publication-overview__detail-year,
.publication-overview__detail-title,
.publication-overview__detail-authors {
  display: block;
}

.publication-overview__detail-year {
  margin-bottom: 0.22rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 1;
}

.publication-overview__detail-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
}

.publication-overview__detail-authors {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.publication-overview__event:hover .publication-overview__detail,
.publication-overview__event:focus-within .publication-overview__detail,
.publication-overview__event.is-active .publication-overview__detail {
  --detail-shift: 0;
  opacity: 1;
  transition-delay: 0s;
  visibility: visible;
}

.publication-overview__event:hover .publication-overview__stem,
.publication-overview__event:focus-within .publication-overview__stem,
.publication-overview__event.is-active .publication-overview__stem {
  background: var(--accent-dark);
  opacity: 0.9;
}

.publication-overview__event:hover .publication-overview__dot,
.publication-overview__pin:focus-visible .publication-overview__dot,
.publication-overview__event.is-active .publication-overview__dot {
  background: var(--accent-dark);
  box-shadow:
    0 0 0 3px var(--focus-ring),
    0 0 0 0.58rem oklch(42% 0.055 176 / 0.13);
  transform: translateX(-50%) scale(1.08);
}

.publication-overview__event:hover .publication-overview__label,
.publication-overview__pin:focus-visible .publication-overview__label,
.publication-overview__event.is-active .publication-overview__label {
  border-color: oklch(42% 0.055 176 / 0.46);
  background: oklch(97% 0.014 84);
  color: var(--accent-dark);
}

.publication-overview__pin:focus-visible {
  outline: none;
}

.publication-overview__pin:focus-visible .publication-overview__label {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.publication-timeline {
  position: relative;
  z-index: 0;
  display: grid;
  gap: clamp(1.35rem, 2.7vw, 2.35rem);
}

.publication-timeline::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  left: min(8rem, 18vw);
  width: 1px;
  background: var(--line);
}

.publication-year-group {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(5rem, 8rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.35rem);
}

.publication-year-marker {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  align-self: start;
  padding-top: 0.1rem;
}

.publication-year-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  min-height: 4.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.publication-year-items {
  display: grid;
  gap: 0.75rem;
}

.publication-entry {
  scroll-margin-top: calc(var(--nav-height) + 1.25rem);
  border-radius: 0.75rem;
  background: oklch(99% 0.006 84 / 0.7);
  box-shadow: none;
  transition:
    background-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 220ms cubic-bezier(0.25, 1, 0.5, 1);
}

.publication-entry:not(.publication-entry--compact) {
  padding: 0.95rem 1.05rem;
}

.publication-entry:not(.publication-entry--compact) .paper-title {
  margin-bottom: 0.45rem;
  font-size: clamp(1.28rem, 2.2vw, 1.5rem);
  line-height: 1.16;
}

.publication-entry:not(.publication-entry--compact) .paper-card__top {
  margin-bottom: 0.35rem;
}

.publication-entry:not(.publication-entry--compact) .paper-summary,
.publication-entry:not(.publication-entry--compact) .paper-authors,
.publication-entry:not(.publication-entry--compact) .paper-journal {
  font-size: 1.02rem;
  line-height: 1.56;
}

.publication-entry:not(.publication-entry--compact) .paper-authors,
.publication-entry:not(.publication-entry--compact) .paper-journal {
  margin-top: 0.28rem;
}

.publication-entry:hover {
  border-color: oklch(42% 0.055 176 / 0.42);
}

.publication-entry.is-targeted {
  border-color: oklch(42% 0.055 176 / 0.5);
  background: oklch(98% 0.014 84 / 0.86);
  box-shadow:
    inset 0 0 0 2px oklch(42% 0.055 176 / 0.2),
    0 16px 34px oklch(23% 0.018 160 / 0.08);
}

.publication-timeline--preview {
  margin-bottom: 1.5rem;
}

.expedition-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.expedition-card {
  border-radius: 0.75rem;
  background: oklch(99% 0.006 84 / 0.68);
  box-shadow: none;
}

.expedition-card .album-card__image img {
  aspect-ratio: 5 / 4;
}

.album-card__context {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.98rem;
  list-style: none;
}

.album-card__context li:first-child {
  color: var(--accent-dark);
  font-weight: 700;
}

.team-roster {
  grid-template-columns: 1fr;
}

.team-roster .person-card {
  display: grid;
  grid-template-columns: minmax(12rem, 0.32fr) minmax(0, 1fr);
  align-items: stretch;
  border-radius: 0.75rem;
  background: oklch(99% 0.006 84 / 0.7);
  box-shadow: none;
}

.team-roster .person-card img {
  align-self: stretch;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.team-roster--compact .person-card img {
  aspect-ratio: 16 / 9;
}

.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.theme-tags li {
  padding: 0.34rem 0.58rem;
  border: 1px solid oklch(42% 0.055 176 / 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  line-height: 1.2;
}

@media (hover: hover) {
  .atlas-route,
  .publication-entry,
  .expedition-card,
  .team-roster .person-card {
    transition: border-color 160ms ease, transform 160ms ease;
  }

  .atlas-route:hover,
  .publication-entry:hover,
  .expedition-card:hover,
  .team-roster .person-card:hover {
    transform: translateY(-2px);
  }

  .landing-atlas__panel:hover .landing-atlas__title {
    transform: translateY(-0.28rem);
  }

  .landing-atlas__panel:hover::before {
    background:
      linear-gradient(180deg, oklch(15% 0.019 160 / 0.04), oklch(15% 0.019 160 / 0.7)),
      linear-gradient(90deg, oklch(13% 0.02 160 / 0.56), oklch(13% 0.02 160 / 0.08));
  }
}

@media (min-width: 1101px) {
  .landing-atlas {
    grid-template-rows: clamp(18rem, 24vw, 24rem) 19rem;
  }

  .landing-atlas__panel {
    min-height: 0;
  }

  .landing-atlas__panel--research {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    min-height: 0;
    padding-right: var(--atlas-tile-pad);
    padding-top: clamp(1.4rem, 3vw, 2.4rem);
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
  }

  .landing-atlas__panel--research::after {
    right: var(--atlas-tile-pad);
  }

  .landing-atlas__panel--field {
    grid-column: 7 / -1;
    grid-row: 1;
    padding-left: var(--atlas-tile-pad);
    padding-right: var(--atlas-tile-pad);
  }

  .landing-atlas__panel--papers {
    grid-column: 7 / 10;
    grid-row: 2;
  }

  .landing-atlas__panel--team {
    grid-column: 10 / -1;
    grid-row: 2;
    padding-right: var(--atlas-tile-pad);
  }

  .landing-atlas__panel--papers,
  .landing-atlas__panel--team {
    gap: clamp(0.75rem, 1.3vw, 1.25rem);
  }

  .landing-atlas__panel--team::after {
    right: var(--atlas-tile-pad);
  }

  .landing-atlas__panel--papers .landing-atlas__title,
  .landing-atlas__panel--team .landing-atlas__title {
    font-size: clamp(1.22rem, 1.5vw, 1.62rem);
  }
}

@media (max-width: 1100px) {
  .landing-atlas__panel--field {
    grid-column: 1 / 7;
  }

  .landing-atlas__panel--papers {
    grid-column: 7 / -1;
  }

  .landing-atlas__panel--team {
    grid-column: 1 / -1;
    padding-left: var(--atlas-page-gutter);
    padding-right: var(--atlas-tile-pad);
  }
}

@media (max-width: 960px) {
  .atlas-overview,
  .people-heart {
    grid-template-columns: 1fr;
  }

  .atlas-hero .hero__title,
  .people-heart__statement h2 {
    font-size: 4.3rem;
  }

  .landing-atlas__panel--field {
    grid-column: 1 / 7;
  }

  .landing-atlas__panel--papers {
    grid-column: 7 / -1;
  }

  .landing-atlas__panel--team {
    grid-column: 1 / -1;
    justify-items: start;
    padding-left: var(--atlas-page-gutter);
    padding-right: var(--atlas-tile-pad);
    text-align: left;
  }

  .people-heart__portraits {
    grid-template-rows: repeat(2, minmax(9rem, 1fr));
    min-height: 24rem;
  }

  .people-heart__portraits img {
    min-height: 12rem;
  }

}

@media (max-width: 760px) {
  .publication-overview {
    margin-bottom: 1.5rem;
  }

  .publication-overview__track {
    --pin-hit-width: 5.65rem;
    --pin-base: 1.55rem;
    --pin-step: 1.7rem;
    min-height: 22rem;
  }

  .publication-overview__detail {
    width: min(15rem, calc(100vw - 1.35rem));
  }

  .publication-overview__event {
    left: clamp(2.9rem, var(--timeline-position), calc(100% - 2.9rem));
  }

  .publication-overview__label {
    max-width: 5.75rem;
    font-size: 0.6rem;
  }

  .publication-timeline::before {
    left: 2.4rem;
  }

  .publication-year-group {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-left: 4.5rem;
  }

  .publication-year-marker {
    position: absolute;
    left: 0;
    top: 0;
  }

  .publication-year-marker span {
    min-width: 3.5rem;
    min-height: 3.5rem;
    font-size: 1.12rem;
  }

  .team-roster .person-card {
    grid-template-columns: 1fr;
  }

  .team-roster .person-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 2.65;
  }
}

@media (max-width: 640px) {
  .atlas-hero {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .atlas-hero .hero__title,
  .people-heart__statement h2 {
    font-size: 3.2rem;
  }

  .atlas-hero__people-note {
    width: 100%;
    font-size: 1.18rem;
  }

  .landing-atlas {
    grid-template-columns: 1fr;
  }

  .landing-atlas__panel,
  .landing-atlas__panel--research,
  .landing-atlas__panel--field,
  .landing-atlas__panel--papers,
  .landing-atlas__panel--team {
    grid-column: 1 / -1;
    min-height: 12rem;
  }

  .people-heart__portraits {
    grid-template-columns: repeat(5, minmax(3rem, 1fr));
    grid-template-rows: 8rem;
    min-height: 8rem;
  }

  .people-heart__portraits img {
    grid-column: auto;
    grid-row: auto;
  }

  .people-heart__portraits img {
    min-height: 8rem;
  }

  .atlas-route {
    grid-template-columns: 2.75rem minmax(0, 1fr);
  }

  .publication-year-group {
    padding-left: 0;
  }

  .publication-timeline::before {
    display: none;
  }

  .publication-year-marker {
    position: static;
  }

  .publication-year-marker span {
    border-radius: 999px;
    min-width: 0;
    min-height: 0;
    padding: 0.5rem 0.75rem;
  }
}
