:root {
  --ink: #171717;
  --muted: #6f6f6f;
  --paper: #ffffff;
  --soft: #f3f1eb;
  --line: #d8d5ce;
  --dark: #171717;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 18px;
  z-index: 9999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.skip-link:focus {
  top: 18px;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(12px);
}

.site-nav {
  max-width: 1380px;
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 0.62;
}

.menu-toggle {
  display: none;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 7px 11px;
  font: inherit;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: #fff;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 48px));
  margin: 0 0 clamp(52px, 8vh, 92px) clamp(24px, 7vw, 100px);
  padding-top: var(--header-height);
  text-align: left;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-motto {
  max-width: 720px;
  margin: 24px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 2.7vw, 2.4rem);
  font-style: italic;
  line-height: 1.25;
}

.hero-credit {
  margin: 20px 0 28px;
  font-size: 0.95rem;
}

.hero-link {
  display: inline-block;
  padding-bottom: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Sections */

.section {
  padding: 92px 28px;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-narrow,
.essay-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 32px;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.section p {
  margin: 0 0 22px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

/* Archive */

.archive-section {
  background: var(--soft);
}

.journey-list {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.camp-entry {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.camp-entry time {
  align-self: start;
  padding-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.camp-entry h3 {
  margin: 0 0 3px;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.camp-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.camp-entry > a {
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid currentColor;
}

.camp-entry > a:hover,
.camp-entry > a:focus-visible {
  opacity: 0.58;
}

.archive-motto {
  max-width: 760px;
  margin: 54px auto 0 !important;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-style: italic;
}

/* Themes */

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.theme-grid article {
  min-height: 260px;
  padding: 30px;
  background: #fff;
}

.theme-grid h3 {
  margin: 0 0 12px;
  font-size: 1.9rem;
  line-height: 1.08;
}

.theme-grid p {
  font-size: 0.92rem;
}

/* Public exhibitions */

.public-section {
  background: #ece9e2;
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.public-card {
  padding: 38px;
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.public-card h3 {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.08;
}

.public-card p {
  font-size: 0.92rem;
}

.public-year {
  margin-bottom: 8px !important;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.text-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.section-link-wrap {
  margin-top: 34px !important;
}

/* Essay */

.essay-section {
  background: var(--dark);
  color: #f5f5f2;
}

.essay-wrap {
  max-width: 760px;
}

.essay-wrap p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.84;
}

.pull-quote {
  margin: 52px 0 !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(2.1rem, 4vw, 3.5rem) !important;
  line-height: 1.18 !important;
  text-align: left;
}

.essay-ending {
  margin-top: 46px !important;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* Book and biography */

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
  background: var(--soft);
}

.book-cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.book-copy {
  max-width: 600px;
}

.book-copy h2 {
  margin-bottom: 8px;
}

.book-subtitle {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.book-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.button {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 21px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: var(--soft);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* Footer */

.site-footer {
  padding: 58px 24px;
  text-align: center;
  background: #111;
  color: #f3f3f0;
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Responsive */

@media (max-width: 1050px) {
  .site-nav {
    padding: 0 22px;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
  }

  .menu-toggle {
    display: none;
  }

  .camp-entry {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .camp-entry > a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 800px) {
  .theme-grid,
  .public-grid {
    grid-template-columns: 1fr;
  }

  .public-grid {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .book-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .book-copy {
    max-width: none;
  }

  .book-links {
    display: block;
  }

  .book-links .button {
    margin-right: 8px;
  }

  :root {
    --header-height: 68px;
  }

.nav-links {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
}

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

.menu-toggle {
  display: block;
}
  
  body {
    font-size: 16px;
  }

  .site-nav {
    padding: 0 20px;
  }

  .site-logo {
    font-size: 1.25rem;
  }

  .hero-copy {
    width: calc(100% - 34px);
    margin: 0 17px 44px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .section {
    padding: 72px 20px;
  }

  .camp-entry {
    display: block;
    padding: 25px 0;
  }

  .camp-entry time {
    display: block;
    margin-bottom: 9px;
    padding: 0;
  }

  .camp-entry p {
    margin-bottom: 16px;
  }

  .camp-entry > a {
    display: inline-block;
    white-space: normal;
  }

  .link-row {
    display: block;
  }

  .link-row .button {
    margin-right: 8px;
  }
}

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

  .site-header {
    transition: none;
  }
}
/* ---------- Closing Statement ---------- */

.closing-statement {
  padding: 110px 30px 95px;
  background: #ffffff;
  text-align: center;
}

.closing-statement h2 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.closing-motto {
  max-width: 700px;
  margin: 0 auto 42px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-style: italic;
  line-height: 1.35;
  color: #666;
}

.closing-facts {
  margin-top: 0;
}

.closing-facts p {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  color: #333;
}
.press-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 25px 80px;
}

.press-hero {
    text-align: center;
    margin-bottom: 50px;
}

.press-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 1.2rem;
}

.press-page section {
    margin-bottom: 60px;
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    margin: 12px 0;
}

.download-list a {
    text-decoration: none;
    font-size: 1.1rem;
}

.press-images img {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
}

.links ul {
    padding-left: 20px;
}

.contact a {
    text-decoration: none;
}
/* Press page header */

.press-page-header,
body:has(.press-page) .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.09);
  backdrop-filter: blur(12px);
}
.book-editions {
  margin: -14px 0 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
