
:root {
  --green: #004226;
  --cream: #FBF4E2;
  --text: #111111;
  --muted: #6E6E6E;
  --line: rgba(17,17,17,.12);
  --white: #FFFFFF;
  --max: 1180px;
  --side: clamp(22px, 4vw, 72px);
  --font: "Neue Haas Grotesk", "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--cream); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
.container { width: min(100% - (var(--side) * 2), var(--max)); margin-inline: auto; }
.site-nav { position: sticky; top: 0; z-index: 20; background: rgba(251,244,226,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.nav-contact { min-height: 36px; padding: 10px 17px; border: 1px solid rgba(17,17,17,.18); border-radius: 999px; }
.blog-hero { padding: clamp(82px, 11vw, 150px) 0 clamp(48px, 7vw, 92px); border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 22px; font-size: 11px; line-height: 1; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.blog-title { max-width: 920px; margin: 0; font-size: clamp(44px, 7vw, 106px); line-height: .94; letter-spacing: -.07em; font-weight: 500; }
.blog-subtitle { max-width: 700px; margin: 28px 0 0; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.5; color: var(--muted); }
.post-grid { padding: clamp(42px, 7vw, 92px) 0; display: grid; gap: 22px; }
.post-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 360px) auto; gap: 24px; align-items: center; padding: clamp(24px, 3vw, 42px); border: 1px solid var(--line); background: rgba(255,255,255,.26); transition: border-color .2s ease, transform .2s ease; }
.post-card-cover { width: auto; max-width: 100%; height: auto; object-fit: contain; border: 1px solid var(--line); background: var(--white); justify-self: end; }
.post-card:hover { border-color: rgba(0,66,38,.42); transform: translateY(-2px); }
.post-card h2 { margin: 14px 0 0; max-width: 760px; font-size: clamp(28px, 4vw, 54px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; }
.post-card p { max-width: 740px; margin: 18px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
.post-meta { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.post-arrow { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--green); }
.article-wrap { padding: clamp(72px, 9vw, 130px) 0; }
.article-header { max-width: 960px; margin-bottom: clamp(36px, 6vw, 76px); }
.article-header h1 { margin: 0; font-size: clamp(42px, 6.2vw, 94px); line-height: .98; letter-spacing: -.065em; font-weight: 500; }
.article-description { margin: 26px 0 0; max-width: 780px; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5; color: var(--muted); }
.article-meta { margin: 24px 0 0; display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.article-cover { margin: 0 0 clamp(42px, 6vw, 78px); border: 1px solid var(--line); }
.article-body { max-width: 820px; margin: 0 auto; font-family: var(--serif); font-size: clamp(18px, 1.55vw, 21px); line-height: 1.78; }
.article-body h1 { display: none; }
.article-body h2 { font-family: var(--font); font-size: clamp(30px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -.045em; font-weight: 500; margin: 2.2em 0 .65em; }
.article-body h3 { font-family: var(--font); font-size: clamp(22px, 2vw, 30px); line-height: 1.2; letter-spacing: -.03em; margin: 1.8em 0 .5em; }
.article-body p { margin: 1.05em 0; }
.article-body a { color: var(--green); border-bottom: 1px solid rgba(0,66,38,.25); }
.article-body ul, .article-body ol { padding-left: 1.25em; }
.article-body li { margin: .5em 0; }
.article-body blockquote { margin: 2em 0; padding-left: 1.25em; border-left: 3px solid var(--green); color: var(--muted); }
.article-content img,
.blog-post img,
figure img,
.article-body img,
.article-cover {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.article-body img { margin-top: 2.2em; margin-bottom: .5em; border: 1px solid var(--line); background: var(--white); }
.article-cover { margin-bottom: clamp(42px, 6vw, 78px); border: 1px solid var(--line); }
.article-body p:has(> img) { text-align: center; }
.article-body table { width: 100%; border-collapse: collapse; font-family: var(--font); font-size: 15px; line-height: 1.45; margin: 2em 0; }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px; vertical-align: top; }
.article-body th { text-align: left; color: var(--green); }
.back-link { display: inline-flex; margin-bottom: 42px; color: var(--green); font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card-cover { justify-self: start; }
}
@media (max-width: 760px) {
  .nav-inner { height: auto; padding: 18px 0; align-items: flex-start; }
  .nav-links { flex-wrap: wrap; justify-content: flex-end; }
  .post-arrow { display: none; }
}

.cover-credit {
  margin: -34px auto 42px;
  max-width: 920px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.article-cta { margin: 2em 0; padding: 24px; border: 1px solid rgba(0,66,38,.18); background: rgba(0,66,38,.045); font-family: var(--font); font-size: 16px; line-height: 1.55; color: var(--text); }
.article-cta p { margin: .45em 0; }
.article-cta a { color: var(--green); border-bottom: 1px solid rgba(0,66,38,.35); }


.topic-nav {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.topic-nav-label {
  margin-right: 4px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.topic-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 10px 15px;
  border: 1px solid rgba(17,17,17,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  color: var(--text);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.topic-pill:hover,
.topic-pill.active {
  border-color: rgba(0,66,38,.44);
  background: rgba(0,66,38,.06);
  color: var(--green);
  transform: translateY(-1px);
}
.hub-hero {
  padding-bottom: clamp(46px, 6vw, 82px);
}
.hub-summary {
  padding: clamp(32px, 5vw, 62px) 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 28px;
  align-items: stretch;
}
.hub-summary > div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.22);
  padding: clamp(22px, 3vw, 34px);
}
.hub-summary p:last-child {
  margin: 0;
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}
.hub-count {
  display: grid;
  place-items: center;
  text-align: center;
}
.hub-count span {
  display: block;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .9;
  letter-spacing: -.06em;
  color: var(--green);
}
.hub-count p {
  margin: 12px 0 0 !important;
  max-width: 180px;
  font-size: 12px !important;
  letter-spacing: .13em;
  line-height: 1.45 !important;
  text-transform: uppercase;
}
.hub-section-heading {
  padding: clamp(34px, 5vw, 70px) 0 0;
}
.hub-section-heading .eyebrow {
  margin-bottom: 0;
}
.hub-post-grid {
  padding-top: 22px;
}
.article-topic-nav {
  margin: -22px 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.article-topic-nav span {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 9px 14px;
  border: 1px solid rgba(17,17,17,.16);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .topic-nav { align-items: flex-start; }
  .topic-nav-label { width: 100%; }
  .hub-summary { grid-template-columns: 1fr; }
}

/* Editorial category navigation */
.category-nav-block {
  margin-top: clamp(24px, 3.4vw, 42px);
  padding-top: clamp(18px, 2.2vw, 26px);
  border-top: 1px solid rgba(0,66,38,.22);
}
.category-nav-title {
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 400;
  color: var(--green);
}
.category-nav-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.category-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(0,66,38,.48);
  border-radius: 999px;
  color: var(--green);
  background: transparent;
  font-size: clamp(11px, .86vw, 13px);
  line-height: 1;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.category-nav-button:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  transform: translateY(-1px);
}
.hub-hero {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(30px, 4vw, 52px);
}
.hub-hero .blog-title {
  max-width: 980px;
  font-size: clamp(46px, 6vw, 92px);
}
.hub-post-grid {
  padding-top: clamp(34px, 5vw, 68px);
}
.hub-post-grid .post-card {
  padding: clamp(22px, 2.5vw, 34px);
}
.hub-post-grid .post-card h2 {
  font-size: clamp(26px, 3.2vw, 44px);
}
.hub-post-grid .post-card p {
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .topic-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .topic-strip-grid { grid-template-columns: 1fr; }
  .topic-strip-card { min-height: 58px; }
}



/* Blog index gallery header */
.blog-index-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 56vw, 760px);
  padding: clamp(110px, 13vw, 180px) 0 clamp(46px, 6vw, 84px);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.34) 55%, rgba(0,0,0,.58) 100%),
    url('/assets/blog/blog-header-museum.jpg') center center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.blog-index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,.06), rgba(0,0,0,0) 34%);
}
.blog-index-hero .container {
  position: relative;
  z-index: 1;
}
.blog-index-hero .eyebrow,
.blog-index-hero .blog-subtitle {
  color: rgba(255,255,255,.78);
}
.blog-logo-title {
  max-width: min(760px, 74vw);
  line-height: 1;
  letter-spacing: 0;
}
.blog-hero-logo {
  width: min(720px, 76vw);
  height: auto;
  max-width: 100%;
}
.blog-index-hero .category-nav-block {
  border-top-color: rgba(255,255,255,.26);
}
.blog-index-hero .category-nav-title {
  color: rgba(255,255,255,.94);
}
.blog-index-hero .category-nav-button {
  border-color: rgba(255,255,255,.42);
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.08);
}
.blog-index-hero .category-nav-button:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
@media (max-width: 760px) {
  .blog-index-hero {
    min-height: 560px;
    padding-top: 96px;
    background-position: center center;
  }
  .blog-hero-logo {
    width: min(520px, 82vw);
  }
}

/* Blog index full-height editorial hero */
.blog-index-page .site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: none;
  transition: background-color .52s cubic-bezier(.16,1,.3,1), color .52s cubic-bezier(.16,1,.3,1), border-color .52s cubic-bezier(.16,1,.3,1), height .52s cubic-bezier(.16,1,.3,1), backdrop-filter .52s cubic-bezier(.16,1,.3,1);
}
.blog-index-page .site-nav.is-scrolled {
  height: 68px;
  background: rgba(251,244,226,.96);
  color: var(--text);
  border-bottom-color: rgba(17,17,17,.08);
  backdrop-filter: blur(14px);
}
.blog-index-page .nav-inner {
  height: 100%;
  width: min(100% - (var(--side) * 2), var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.blog-index-page .nav-brand {
  display: inline-flex;
  align-items: center;
  opacity: .96;
  transition: opacity .26s cubic-bezier(.16,1,.3,1);
}
.blog-index-page .nav-brand:hover { opacity: 1; }
.blog-index-page .nav-logo {
  width: 136px;
  height: auto;
  filter: none;
  opacity: .96;
  transition: filter .52s cubic-bezier(.16,1,.3,1), opacity .26s cubic-bezier(.16,1,.3,1), width .52s cubic-bezier(.16,1,.3,1);
}
.blog-index-page .site-nav.is-scrolled .nav-logo {
  filter: invert(1);
  opacity: .92;
}
.blog-index-page .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: unset;
  letter-spacing: unset;
  text-transform: none;
}
.blog-index-page .nav-links a:not(.nav-contact) {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .76;
  transition: opacity .24s cubic-bezier(.16,1,.3,1);
}
.blog-index-page .nav-links a:not(.nav-contact):hover,
.blog-index-page .nav-links a:not(.nav-contact):focus-visible {
  opacity: 1;
  outline: none;
}
.blog-index-page .nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: inherit;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
  transition: border-color .26s cubic-bezier(.16,1,.3,1), background-color .26s cubic-bezier(.16,1,.3,1), color .26s cubic-bezier(.16,1,.3,1), opacity .26s cubic-bezier(.16,1,.3,1);
}
.blog-index-page .site-nav.is-scrolled .nav-contact { border-color: rgba(17,17,17,.18); }
.blog-index-page .nav-contact:hover,
.blog-index-page .nav-contact:focus-visible {
  opacity: 1;
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  outline: none;
}
.blog-index-page .site-nav.is-scrolled .nav-contact:hover,
.blog-index-page .site-nav.is-scrolled .nav-contact:focus-visible {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.blog-index-page .blog-index-hero {
  min-height: 100svh;
  padding: calc(76px + clamp(52px, 7vw, 112px)) 0 clamp(70px, 9vw, 124px);
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.64) 100%),
    url('/assets/blog/blog-header-museum.jpg') center center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}
.blog-index-page .blog-index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 36%, rgba(255,255,255,.05), rgba(0,0,0,0) 36%);
}
.blog-index-page .blog-hero-content {
  position: relative;
  z-index: 1;
}
.blog-index-page .blog-hero-logo {
  width: min(500px, 58vw);
  height: auto;
  max-width: 100%;
  margin: 0 0 clamp(24px, 3vw, 34px);
}
.blog-index-page .blog-index-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(25px, 2.45vw, 39px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 500;
}
.blog-index-page .blog-index-hero .blog-subtitle {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
}
.blog-index-page .blog-index-hero .category-nav-block {
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 0;
  border-top: 0;
}
.blog-index-page .blog-index-hero .category-nav-title { display: none; }
.blog-index-page .blog-index-hero .category-nav-buttons {
  gap: 10px 12px;
}
.blog-index-page .blog-index-hero .category-nav-button {
  min-height: 44px;
  padding: 0 20px;
  border-color: rgba(255,255,255,.42);
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.08);
}
.blog-index-page .blog-index-hero .category-nav-button:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
@media (max-width: 760px) {
  .blog-index-page .site-nav { height: 74px; }
  .blog-index-page .site-nav.is-scrolled { height: 66px; }
  .blog-index-page .nav-inner { gap: 18px; }
  .blog-index-page .nav-logo { width: 118px; }
  .blog-index-page .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .blog-index-page .nav-links a:not(.nav-contact),
  .blog-index-page .nav-contact { font-size: 10px; }
  .blog-index-page .nav-contact { min-height: 32px; padding: 0 13px; }
  .blog-index-page .blog-index-hero {
    min-height: 100svh;
    padding: calc(74px + 46px) 0 54px;
    background-position: center center;
  }
  .blog-index-page .blog-hero-logo {
    width: min(360px, 76vw);
  }
}


/* Blog index two-column editorial card grid */
.blog-index-page .post-grid {
  padding: clamp(50px, 7vw, 96px) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 30px);
  align-items: stretch;
}
.blog-index-page .post-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(17,17,17,.12);
}
.blog-index-page .post-card:hover {
  border-color: rgba(0,66,38,.38);
  transform: translateY(-2px);
}
.blog-index-page .post-card-cover {
  order: 1;
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  border: 0;
  border-bottom: 1px solid rgba(17,17,17,.12);
  background: var(--white);
  justify-self: auto;
}
.blog-index-page .post-card-copy {
  order: 2;
  padding: clamp(22px, 2.6vw, 34px);
}
.blog-index-page .post-card h2 {
  margin: 13px 0 0;
  max-width: 100%;
  font-size: clamp(26px, 2.6vw, 43px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.blog-index-page .post-card p {
  max-width: 100%;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.58;
}
.blog-index-page .post-meta {
  font-size: 10.5px;
  letter-spacing: .14em;
}
.blog-index-page .post-arrow {
  display: none;
}
@media (max-width: 920px) {
  .blog-index-page .post-grid {
    grid-template-columns: 1fr;
  }
  .blog-index-page .post-card-cover {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 560px) {
  .blog-index-page .post-grid {
    padding-top: 40px;
    gap: 18px;
  }
  .blog-index-page .post-card-copy {
    padding: 22px;
  }
  .blog-index-page .post-card h2 {
    font-size: clamp(25px, 8vw, 34px);
  }
}

/* Mobile header nav cleanup */
@media (max-width: 900px) {
  .site-nav .nav-links a:not(.nav-contact),
  .blog-index-page .site-nav .nav-links a:not(.nav-contact) {
    display: none !important;
  }
  .site-nav .nav-links,
  .blog-index-page .site-nav .nav-links {
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }
}


/* Article cover hero layout */
.article-page .site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 76px;
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
  transition: background-color .42s cubic-bezier(.16,1,.3,1), color .42s cubic-bezier(.16,1,.3,1), border-color .42s cubic-bezier(.16,1,.3,1), backdrop-filter .42s cubic-bezier(.16,1,.3,1), height .42s cubic-bezier(.16,1,.3,1);
}
.article-page .site-nav.is-scrolled {
  height: 68px;
  background: rgba(251,244,226,.96);
  color: var(--text);
  border-bottom-color: rgba(17,17,17,.08);
  backdrop-filter: blur(14px);
}
.article-page .nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.article-page .nav-brand {
  display: inline-flex;
  align-items: center;
  opacity: .96;
  transition: opacity .24s ease;
}
.article-page .nav-brand:hover { opacity: 1; }
.article-page .nav-logo {
  width: 136px;
  height: auto;
  max-width: 38vw;
  filter: none;
  opacity: .96;
  transition: filter .42s cubic-bezier(.16,1,.3,1), opacity .24s ease, width .42s cubic-bezier(.16,1,.3,1);
}
.article-page .site-nav.is-scrolled .nav-logo {
  filter: invert(1);
  opacity: .9;
}
.article-page .site-nav:not(.is-scrolled) .nav-links a,
.article-page .site-nav:not(.is-scrolled) .nav-links a.is-active:not(.nav-contact) {
  color: rgba(255,255,255,.88);
}
.article-page .site-nav:not(.is-scrolled) .nav-links a:hover,
.article-page .site-nav:not(.is-scrolled) .nav-links a.is-active:not(.nav-contact) {
  color: var(--white);
}
.article-page .site-nav:not(.is-scrolled) .nav-contact {
  border-color: rgba(255,255,255,.36);
  background: rgba(0,0,0,.08);
  color: rgba(255,255,255,.92);
}
.article-page .site-nav:not(.is-scrolled) .nav-contact:hover,
.article-page .site-nav:not(.is-scrolled) .nav-contact.is-active {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.article-page .article-wrap {
  padding: 0 0 clamp(72px, 9vw, 130px);
}
.article-hero {
  position: relative;
  min-height: clamp(600px, 86svh, 880px);
  padding: calc(76px + clamp(70px, 10vw, 150px)) 0 clamp(56px, 8vw, 104px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background-image: var(--article-hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(0,0,0,.15), rgba(0,0,0,.15)),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.20) 34%, rgba(0,0,0,.62) 100%),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.06), rgba(0,0,0,0) 36%);
}
.article-hero-content {
  position: relative;
  z-index: 1;
}
.article-hero .article-header {
  max-width: 1080px;
  margin: 0;
}
.article-hero .article-header h1 {
  color: var(--white);
  max-width: 1080px;
  text-shadow: 0 18px 56px rgba(0,0,0,.28);
}
.article-hero .eyebrow,
.article-hero .article-description,
.article-hero .article-meta {
  color: rgba(255,255,255,.78);
}
.article-hero .article-description {
  max-width: 820px;
}
.article-hero .article-meta {
  max-width: 980px;
}
.article-hero-back {
  margin: 0 0 clamp(32px, 4vw, 52px);
  color: rgba(255,255,255,.82);
}
.article-hero-back:hover {
  color: var(--white);
}
.article-after-hero {
  padding-top: clamp(32px, 5vw, 64px);
}
.article-page .article-cover {
  display: none !important;
}
.article-page .cover-credit {
  margin: 0 auto clamp(40px, 5.8vw, 74px);
  max-width: 820px;
}
@media (max-width: 760px) {
  .article-page .site-nav { height: 74px; }
  .article-page .site-nav.is-scrolled { height: 66px; }
  .article-page .nav-inner { gap: 18px; }
  .article-page .nav-logo { width: 118px; max-width: 40vw; }
  .article-page .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .article-page .nav-links a:not(.nav-contact),
  .article-page .nav-contact { font-size: 10px; }
  .article-page .nav-contact { min-height: 32px; padding: 0 13px; }
  .article-hero {
    min-height: 76svh;
    padding: calc(74px + 54px) 0 52px;
    background-position: center center;
  }
  .article-hero .article-header h1 {
    font-size: clamp(39px, 12vw, 70px);
  }
  .article-after-hero {
    padding-top: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .article-page .site-nav,
  .article-page .nav-logo,
  .article-page .nav-brand { transition: none; }
}

/* Article hero polish: darker cover, white read-time pill, blog-style top bar on scroll */
.article-hero .article-reading-time {
  color: rgba(255,255,255,.92) !important;
}
.article-hero .article-reading-time::before {
  background: currentColor !important;
  opacity: .62 !important;
}
.article-page .site-nav.is-scrolled {
  background: rgba(251,244,226,.96);
  border-bottom: 1px solid rgba(17,17,17,.12);
  backdrop-filter: blur(14px);
}
.article-page .section-indicator {
  display: none !important;
}


/* Article final fixes from latest ZIP */
.article-page .site-nav.is-scrolled {
  background: rgba(251,244,226,.96) !important;
  color: var(--text, #111) !important;
  border-bottom: 1px solid rgba(17,17,17,.08) !important;
  backdrop-filter: blur(14px) !important;
}
.article-page .site-nav.is-scrolled .nav-links a:not(.nav-contact) {
  color: rgba(17,17,17,.74) !important;
}
.article-page .site-nav.is-scrolled .nav-contact {
  color: var(--green, #004226) !important;
  border-color: rgba(17,17,17,.18) !important;
  background: transparent !important;
}
.article-page .site-nav.is-scrolled .nav-contact:hover,
.article-page .site-nav.is-scrolled .nav-contact:focus-visible,
.article-page .site-nav.is-scrolled .nav-contact.is-active {
  color: var(--white, #fff) !important;
  background: var(--green, #004226) !important;
  border-color: var(--green, #004226) !important;
}
.article-page .site-nav.is-scrolled .nav-logo { filter: invert(1) !important; }
.article-hero .article-copy-link,
.article-hero .article-copy-link:hover,
.article-hero .article-copy-link:focus-visible,
.article-hero .article-copy-link.is-copied { color: var(--white, #fff) !important; }

/* Final share row polish 2026-07-04 */
.article-hero .article-meta .article-copy-link {
  display: none !important;
}
.article-hero .article-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 14px !important;
  margin-top: 18px !important;
}
.article-hero .article-actions .article-copy-link {
  order: 0 !important;
  min-height: 30px !important;
  padding: 0 13px !important;
  border: 1px solid rgba(255,255,255,.9) !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  opacity: .92 !important;
}
.article-hero .article-actions .article-copy-link:hover,
.article-hero .article-actions .article-copy-link:focus-visible,
.article-hero .article-actions .article-copy-link.is-copied {
  border-color: #fff !important;
  background: rgba(255,255,255,.10) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}
.article-hero .article-actions .article-share-link {
  order: 2 !important;
  color: rgba(255,255,255,.88) !important;
}
.article-hero .article-actions .article-share-link:hover,
.article-hero .article-actions .article-share-link:focus-visible {
  color: #fff !important;
}


/* Logo aspect ratio safety fix */
.nav-logo, .hero-logo, .footer-hero-logo { height: auto; object-fit: contain; flex-shrink: 0; }

/* Blog image captions: consistent editorial styling */
.article-body figure,
.article-content figure,
.blog-post figure {
  margin: clamp(32px, 5vw, 50px) auto;
  max-width: 100%;
  text-align: center;
}
.article-body p:has(> figure),
.article-content p:has(> figure),
.blog-post p:has(> figure) {
  margin: clamp(32px, 5vw, 50px) 0;
  text-align: center;
}
.article-body p > figure,
.article-content p > figure,
.blog-post p > figure {
  margin: 0 auto;
}
.article-body figure img,
.article-content figure img,
.blog-post figure img {
  margin-top: 0;
  margin-bottom: 0;
}
.article-body figcaption,
.article-content figcaption,
.blog-post figcaption,
.article-video figcaption {
  display: block;
  max-width: min(100%, 760px);
  margin: 10px auto 0 !important;
  padding: 0 clamp(8px, 1.5vw, 16px);
  text-align: center !important;
  font-family: var(--font) !important;
  font-size: clamp(11px, .86vw, 13px) !important;
  line-height: 1.45 !important;
  letter-spacing: .01em;
  color: var(--muted) !important;
  font-style: normal;
}
.article-body figure + p,
.article-content figure + p,
.blog-post figure + p {
  margin-top: 1.35em;
}
@media (max-width: 760px) {
  .article-body figure,
  .article-content figure,
  .blog-post figure {
    margin: 30px auto;
  }
  .article-body figcaption,
  .article-content figcaption,
  .blog-post figcaption,
  .article-video figcaption {
    max-width: 92%;
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.42 !important;
  }
}

/* Mobile article header contact button alignment safety */
@media (max-width: 760px) {
  .article-page .nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    height: 32px;
    padding: 0 13px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }
}

/* BLOG SELECTED REDESIGN 2026-07-10 START */
.blog-index-page .blog-index-hero {
  min-height: 76svh;
  padding: calc(76px + clamp(44px, 6vw, 88px)) 0 clamp(58px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.68) 100%),
    url('/assets/blog/blog-header-museum.jpg') center center / cover no-repeat;
}
.blog-index-page .blog-hero-content {
  max-width: var(--max);
}
.blog-index-page .blog-hero-logo {
  width: min(500px, 58vw);
  margin-bottom: clamp(24px, 3vw, 34px);
}
.blog-index-page .blog-index-title {
  max-width: 860px;
  font-size: clamp(25px, 2.45vw, 39px);
}
.blog-index-page .blog-index-hero .blog-subtitle {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.blog-section-eyebrow {
  margin: 0 0 20px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
  text-wrap: balance;
}
.blog-featured {
  padding: clamp(86px, 9vw, 122px) 0;
  background: var(--white);
}
.blog-featured-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 62px);
}
.blog-featured-count {
  padding-bottom: 5px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
}
.blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, .82fr);
  gap: 20px;
}
.blog-featured-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.blog-featured-card {
  position: relative;
  display: block;
  min-height: 258px;
  overflow: hidden;
  background: #171717;
  color: var(--white);
  isolation: isolate;
}
.blog-featured-card-lead { min-height: 536px; }
.blog-featured-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms cubic-bezier(.16,1,.3,1), filter 850ms cubic-bezier(.16,1,.3,1);
}
.blog-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 16%, rgba(0,0,0,.84) 100%);
}
.blog-featured-card:hover img,
.blog-featured-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(.92);
}
.blog-featured-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.blog-featured-card-copy {
  position: absolute;
  left: clamp(24px, 3vw, 40px);
  right: clamp(24px, 3vw, 40px);
  bottom: clamp(24px, 3vw, 38px);
}
.blog-featured-side .blog-featured-card-copy {
  left: 24px;
  right: 24px;
  bottom: 23px;
}
.blog-featured-meta {
  margin: 0 0 12px;
  font-size: 9.5px;
  line-height: 1.4;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.blog-featured-card h2,
.blog-featured-card h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 500;
  text-wrap: balance;
}
.blog-featured-card h2 {
  max-width: 650px;
  font-size: clamp(36px, 4.1vw, 58px);
}
.blog-featured-card h3 { font-size: clamp(24px, 2.25vw, 32px); }
.blog-featured-description {
  max-width: 620px;
  margin: 17px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.76);
}

.research-trust-cta {
  padding: clamp(60px, 7vw, 88px) 0;
  background: var(--green);
  color: var(--cream);
}
.research-trust-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.research-trust-cta h2 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 500;
  text-wrap: balance;
}
.research-trust-cta-action {
  display: grid;
  justify-items: start;
  gap: 22px;
}
.research-trust-cta-action p {
  max-width: 560px;
  margin: 0;
  color: rgba(251,244,226,.76);
  font-size: 16px;
  line-height: 1.55;
}
.research-trust-cta-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(251,244,226,.74);
  border-radius: 999px;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.research-trust-cta-action a:hover,
.research-trust-cta-action a:focus-visible {
  background: var(--cream);
  color: var(--green);
  transform: translateY(-1px);
  outline: none;
}

.archive-heading {
  padding-top: clamp(72px, 8vw, 108px);
}
.archive-heading-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
}
.blog-index-page .post-grid {
  padding: clamp(38px, 4vw, 56px) 0 clamp(70px, 8vw, 108px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.blog-index-page .post-card {
  background: rgba(255,255,255,.5);
  transition: transform 300ms cubic-bezier(.16,1,.3,1), border-color 300ms ease, box-shadow 300ms ease;
}
.blog-index-page .post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,66,38,.28);
  box-shadow: 0 18px 42px rgba(17,17,17,.06);
}
.blog-index-page .post-card-cover {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
}
.blog-index-page .post-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.blog-index-page .post-card h2 {
  margin-top: 11px;
  font-size: clamp(24px, 2.15vw, 31px);
  line-height: 1.04;
}
.blog-index-page .post-card p {
  display: -webkit-box;
  margin-top: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13.5px;
  line-height: 1.5;
}
.blog-index-page .post-meta {
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: .13em;
}
.blog-index-page .post-card[hidden] { display: none !important; }
.archive-footer-controls {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  padding-top: 20px;
}
.load-more-button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}
.load-more-button:hover,
.load-more-button:focus-visible {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-1px);
  outline: none;
}
.load-more-button[hidden] { display: none !important; }

.blog-footer {
  position: relative;
  min-height: 430px;
  padding: clamp(58px, 7vw, 86px) 0 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(6,24,18,.58), rgba(6,24,18,.58)),
    linear-gradient(90deg, rgba(6,24,18,.72) 0%, rgba(6,24,18,.48) 42%, rgba(6,24,18,.68) 100%),
    url('/assets/blog/blog-header-museum.jpg') center center / cover no-repeat;
  color: var(--cream);
}
.blog-footer-main {
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 245px;
}
.blog-footer-logo {
  width: min(250px, 45vw);
  height: auto;
}
.blog-footer-tagline {
  margin: 0;
  max-width: 310px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.blog-footer-lower {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.blog-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.blog-footer-links a,
.blog-footer-meta {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}
.blog-footer-links a:hover,
.blog-footer-links a:focus-visible {
  color: var(--white);
  outline: none;
}

@media (max-width: 980px) {
  .blog-featured-grid { grid-template-columns: 1fr; }
  .blog-featured-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }
  .blog-featured-card-lead { min-height: 500px; }
  .blog-featured-side .blog-featured-card { min-height: 310px; }
  .research-trust-cta-inner { grid-template-columns: 1fr; }
  .blog-index-page .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .blog-index-page .blog-index-hero {
    min-height: 72svh;
    padding: 104px 0 52px;
    background-position: center center;
  }
  .blog-index-page .blog-hero-logo {
    width: min(360px, 76vw);
    margin-bottom: 22px;
  }
  .blog-index-page .blog-index-hero .blog-subtitle {
    max-width: 335px;
    font-size: 16px;
  }
  .blog-featured { padding: 72px 0; }
  .blog-featured-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-featured-count { justify-self: start; }
  .blog-section-title { font-size: 38px; }
  .blog-featured-card-lead { min-height: 450px; }
  .blog-featured-side { grid-template-columns: 1fr; }
  .blog-featured-side .blog-featured-card { min-height: 330px; }
  .blog-featured-card h2 { font-size: clamp(34px, 10vw, 43px); }
  .blog-featured-card h3 { font-size: clamp(27px, 8vw, 34px); }
  .blog-featured-description { display: none; }
  .research-trust-cta { padding: 64px 0; }
  .research-trust-cta-inner { gap: 30px; }
  .research-trust-cta h2 { font-size: 46px; }
  .archive-heading { padding-top: 64px; }
  .archive-heading-copy h2 { font-size: 40px; }
  .blog-index-page .post-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 18px;
  }
  .blog-index-page .post-card-copy { padding: 22px; }
  .blog-index-page .post-card h2 { font-size: clamp(27px, 8vw, 34px); }
  .blog-footer {
    min-height: 0;
    padding: 48px 0 24px;
    background-position: center center;
  }
  .blog-footer-main { min-height: 210px; }
  .blog-footer-lower { grid-template-columns: 1fr; }
  .blog-footer-meta { justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-featured-card img,
  .blog-index-page .post-card { transition: none; }
}
/* BLOG SELECTED REDESIGN 2026-07-10 END */


/* Mobile article viewport stability fix 2026-07-16
   Prevent long URLs, token addresses, inline math, tables and embeds from
   expanding blog post pages beyond the mobile viewport. */
.article-page,
.article-page main,
.article-page .article-wrap,
.article-page .article-hero,
.article-page .article-after-hero,
.article-page .container,
.article-page .article-header,
.article-page .article-body,
.article-page .article-body > * {
  min-width: 0;
  max-width: 100%;
}

.article-page .article-header h1,
.article-page .article-body h2,
.article-page .article-body h3,
.article-page .article-body p,
.article-page .article-body li,
.article-page .article-body blockquote,
.article-page .article-body figcaption,
.article-page .article-body a,
.article-page .article-body code,
.article-page .article-body .math,
.article-page .article-body .math.inline {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-page .article-body pre,
.article-page .article-body code,
.article-page .article-body kbd,
.article-page .article-body samp {
  max-width: 100%;
}

.article-page .article-body pre {
  overflow-x: auto;
  white-space: pre-wrap;
  -webkit-overflow-scrolling: touch;
}

.article-page .article-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article-page .article-body th,
.article-page .article-body td {
  overflow-wrap: break-word;
  word-break: normal;
}

.article-page .article-body iframe,
.article-page .article-body video,
.article-page .article-body embed,
.article-page .article-body object,
.article-page .article-video,
.article-page .article-video-frame {
  display: block;
  max-width: 100%;
}

.article-page .article-body iframe {
  width: 100%;
}

html,
body.article-page {
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body.article-page {
    overflow-x: clip;
  }
}

@media (max-width: 760px) {
  .article-page .article-hero .article-meta > span {
    min-width: 0;
    white-space: normal !important;
  }

  .article-page .article-actions,
  .article-page .article-meta {
    max-width: 100%;
  }
}
/* CATEGORY HUB VISUAL SYSTEM 2026-07-16 START */
/* Category hubs use the same transparent-to-cream navigation behaviour as /blog. */
.hub-page .site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
  transition: background-color .52s cubic-bezier(.16,1,.3,1), color .52s cubic-bezier(.16,1,.3,1), border-color .52s cubic-bezier(.16,1,.3,1), height .52s cubic-bezier(.16,1,.3,1), backdrop-filter .52s cubic-bezier(.16,1,.3,1);
}
.hub-page .site-nav.is-scrolled {
  height: 68px;
  background: rgba(251,244,226,.96);
  color: var(--text);
  border-bottom-color: rgba(17,17,17,.08);
  backdrop-filter: blur(14px);
}
.hub-page .nav-inner {
  width: min(100% - (var(--side) * 2), var(--max));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.hub-page .nav-brand {
  display: inline-flex;
  align-items: center;
  opacity: .96;
  transition: opacity .26s cubic-bezier(.16,1,.3,1);
}
.hub-page .nav-brand:hover { opacity: 1; }
.hub-page .nav-logo {
  width: 136px;
  height: auto;
  filter: none;
  opacity: .96;
  transition: filter .52s cubic-bezier(.16,1,.3,1), opacity .26s cubic-bezier(.16,1,.3,1), width .52s cubic-bezier(.16,1,.3,1);
}
.hub-page .site-nav.is-scrolled .nav-logo {
  filter: invert(1);
  opacity: .92;
}
.hub-page .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px,2.2vw,34px);
  font-size: unset;
  letter-spacing: unset;
  text-transform: none;
}
.hub-page .nav-links a:not(.nav-contact) {
  font-size: 11px;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .76;
  transition: opacity .24s cubic-bezier(.16,1,.3,1);
}
.hub-page .nav-links a:not(.nav-contact):hover,
.hub-page .nav-links a:not(.nav-contact):focus-visible { opacity: 1; outline: none; }
.hub-page .nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: inherit;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .92;
  transition: border-color .26s cubic-bezier(.16,1,.3,1), background-color .26s cubic-bezier(.16,1,.3,1), color .26s cubic-bezier(.16,1,.3,1), opacity .26s cubic-bezier(.16,1,.3,1);
}
.hub-page .site-nav.is-scrolled .nav-contact { border-color: rgba(17,17,17,.18); }
.hub-page .nav-contact:hover,
.hub-page .nav-contact:focus-visible {
  opacity: 1;
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
  outline: none;
}
.hub-page .site-nav.is-scrolled .nav-contact:hover,
.hub-page .site-nav.is-scrolled .nav-contact:focus-visible {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Each category hero uses the newest paper's cover as its editorial backdrop. */
.hub-page .hub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(470px,58vw,720px);
  padding: calc(76px + clamp(70px,9vw,130px)) 0 clamp(58px,8vw,104px);
  border-bottom: 0;
  color: var(--white);
  background-image:
    linear-gradient(180deg,rgba(0,0,0,.14) 0%,rgba(0,0,0,.28) 46%,rgba(0,0,0,.72) 100%),
    var(--hub-cover);
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.hub-page .hub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg,rgba(0,25,15,.30),rgba(0,0,0,0) 58%);
}
.hub-page .hub-hero-content { position: relative; z-index: 1; }
.hub-page .hub-hero-eyebrow {
  margin: 0 0 16px;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hub-page .hub-hero .blog-title {
  max-width: 970px;
  margin: 0;
  color: var(--white);
  font-size: clamp(52px,7.2vw,108px);
  line-height: .92;
  letter-spacing: -.065em;
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.hub-page .hub-hero-latest {
  display: grid;
  gap: 7px;
  width: fit-content;
  max-width: min(680px,100%);
  margin-top: clamp(24px,3.6vw,42px);
  padding: 14px 17px 15px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(8px);
  transition: background-color .22s ease,border-color .22s ease,transform .22s ease;
}
.hub-page .hub-hero-latest span {
  color: rgba(255,255,255,.68);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hub-page .hub-hero-latest strong {
  color: var(--white);
  font-size: clamp(15px,1.4vw,20px);
  line-height: 1.25;
  letter-spacing: -.015em;
  font-weight: 500;
}
.hub-page .hub-hero-latest:hover,
.hub-page .hub-hero-latest:focus-visible {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.68);
  transform: translateY(-2px);
  outline: none;
}

/* Visual category cards on /blog, powered by the latest cover in each hub. */
.blog-index-page .category-nav-buttons.category-cover-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 10px;
  width: 100%;
}
.blog-index-page .category-nav-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 126px;
  padding: 16px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  background-image:
    linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.72)),
    var(--category-cover);
  background-position: center;
  background-size: cover;
  color: var(--white);
  transition: border-color .24s ease,transform .24s ease,box-shadow .24s ease;
}
.blog-index-page .category-nav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0,66,38,0);
  transition: background-color .24s ease;
}
.blog-index-page .category-nav-card:hover,
.blog-index-page .category-nav-card:focus-visible {
  border-color: rgba(255,255,255,.78);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
  outline: none;
}
.blog-index-page .category-nav-card:hover::after,
.blog-index-page .category-nav-card:focus-visible::after { background: rgba(0,66,38,.18); }
.blog-index-page .category-nav-card-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.blog-index-page .category-nav-card-title {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-index-page .category-nav-card-latest {
  overflow: hidden;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1050px) {
  .blog-index-page .category-nav-buttons.category-cover-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .hub-page .site-nav { height: 74px; }
  .hub-page .site-nav.is-scrolled { height: 66px; }
  .hub-page .nav-inner { gap: 18px; }
  .hub-page .nav-logo { width: 118px; max-width: 40vw; }
  .hub-page .nav-links { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .hub-page .nav-links a:not(.nav-contact),
  .hub-page .nav-contact { font-size: 10px; }
  .hub-page .nav-contact { min-height: 32px; padding: 0 13px; }
  .hub-page .hub-hero {
    min-height: 68svh;
    padding: calc(74px + 58px) 0 48px;
    background-position: center;
  }
  .hub-page .hub-hero .blog-title { font-size: clamp(45px,14vw,72px); }
  .hub-page .hub-hero-latest { max-width: 100%; }
  .blog-index-page .category-nav-buttons.category-cover-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .blog-index-page .category-nav-card { min-height: 104px; padding: 13px; }
}
@media (max-width: 430px) {
  .hub-page .nav-links a:not(.nav-contact) { display: none; }
  .blog-index-page .category-nav-card-title { font-size: 10.5px; }
  .blog-index-page .category-nav-card-latest { font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .hub-page .site-nav,
  .hub-page .nav-logo,
  .hub-page .hub-hero-latest,
  .blog-index-page .category-nav-card,
  .blog-index-page .category-nav-card::after { transition: none; }
}
/* CATEGORY HUB VISUAL SYSTEM 2026-07-16 END */

/* ARTICLE DESKTOP TOC RAIL FIX 2026-07-16
   Keep the fixed Table of Contents in a dedicated left rail with a guaranteed
   30px gap from the centered 820px article column at every desktop width. */
@media (min-width: 1321px) {
  html body.article-page .article-toc {
    left: max(24px, calc(50vw - 660px)) !important;
    right: auto !important;
    width: min(220px, calc(50vw - 464px)) !important;
    max-width: 220px !important;
    min-width: 0 !important;
    max-height: min(62vh, 560px) !important;
    padding: 18px 18px 18px 0 !important;
    border-left: 0 !important;
    border-right: 1px solid rgba(0, 66, 38, .20) !important;
    background: linear-gradient(90deg, rgba(251,244,226,0) 0%, rgba(251,244,226,.82) 76%, rgba(251,244,226,.96) 100%);
    contain: layout paint;
  }

  html body.article-page .article-toc__title {
    margin-bottom: 13px !important;
    font-size: 9.5px !important;
    line-height: 1.2 !important;
    letter-spacing: .17em !important;
  }

  html body.article-page .article-toc__links {
    max-height: calc(min(62vh, 560px) - 48px) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding-right: 8px;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,66,38,.24) transparent;
  }

  html body.article-page .article-toc__link {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  html body.article-page .article-toc__links::-webkit-scrollbar {
    width: 4px;
  }

  html body.article-page .article-toc__links::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(0,66,38,.22);
  }
}

/* At laptop and tablet widths the article stays centered and the TOC is hidden,
   rather than being allowed to overlap the reading column. */
@media (max-width: 1320px) {
  html body.article-page .article-toc {
    display: none !important;
  }
}

@media (min-width: 1321px) and (max-height: 700px) {
  html body.article-page .article-toc {
    max-height: 50vh !important;
  }

  html body.article-page .article-toc__links {
    max-height: calc(50vh - 48px) !important;
  }
}
/* ARTICLE DESKTOP TOC RAIL FIX 2026-07-16 END */

/* ARTICLE READING COLUMN +25% WIDTH 2026-07-16
   Expand the editorial body from 820px to 1025px while preserving a dedicated
   220px Table of Contents rail and a 30px safety gap on wide desktop screens. */
@media (min-width: 900px) {
  html body.article-page .article-after-hero > .article-body,
  html body.article-page article.article-body {
    width: min(100%, 1025px) !important;
    max-width: 1025px !important;
  }
}

/* On laptop-size desktops the wider article remains centered and the TOC stays
   hidden, preventing any overlap at intermediate viewport widths. */
@media (min-width: 900px) and (max-width: 1439px) {
  html body.article-page .article-after-hero > .article-body,
  html body.article-page article.article-body {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  html body.article-page .article-toc {
    display: none !important;
  }
}

/* At 1440px and above the article aligns to the right edge of the 1180px site
   container. This creates a stable left rail for TOC without narrowing text. */
@media (min-width: 1440px) {
  html body.article-page .article-after-hero > .article-body,
  html body.article-page article.article-body {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  html body.article-page .article-toc {
    display: block !important;
    left: max(24px, calc(50vw - 685px)) !important;
    right: auto !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
  }
}
/* ARTICLE READING COLUMN +25% WIDTH 2026-07-16 END */


/* SEO/GEO answer-first module */
.article-summary {
  margin: 0 0 clamp(34px, 5vw, 54px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(251, 244, 226, 0.62);
}

.article-summary h2 {
  margin-top: 0;
}

.article-summary p:last-child,
.article-summary ul:last-child,
.article-summary table:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .article-summary {
    padding: 20px;
  }
}

/* BLOG HERO FULL-VIEWPORT / NO-CROP UPDATE 2026-08-19
   Keep the blog hero full-screen like the homepage while preserving the complete
   16:9 artwork. A soft full-bleed backdrop fills any aspect-ratio gap. */
.blog-index-page .blog-index-hero {
  min-height: 100svh;
  min-height: 100dvh;
  background: #111;
  isolation: isolate;
}

.blog-index-page .blog-index-hero::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  pointer-events: none;
  background: url('/assets/blog/blog-header-museum.jpg') center center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.025);
  opacity: .72;
}

.blog-index-page .blog-index-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.24) 44%, rgba(0,0,0,.58) 100%),
    url('/assets/blog/blog-header-museum.jpg') center center / contain no-repeat;
}

.blog-index-page .blog-hero-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .blog-index-page .blog-index-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .blog-index-page .blog-index-hero::before {
    filter: blur(14px);
    opacity: .68;
  }
}
