﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&family=Noto+Serif:wght@500;600;700&display=swap");

:root {
  --ink: #14201f;
  --ink-soft: #394845;
  --muted: #72807b;
  --canvas: #dce8e1;
  --paper: #fbf7ed;
  --paper-2: #f1eadc;
  --white: #fffefd;
  --green: #315f55;
  --green-2: #123b35;
  --clay: #a65a43;
  --ochre: #b78943;
  --blue: #4d6575;
  --line: rgba(20, 32, 31, 0.1);
  --line-strong: rgba(20, 32, 31, 0.18);
  --shadow: 0 26px 64px rgba(20, 32, 31, 0.12);
  --soft-shadow: 0 14px 34px rgba(20, 32, 31, 0.07);
  --radius: 8px;
  --site-width: 1260px;
  --site-gutter: 32px;
  font-family: "Noto Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 254, 253, 0.72), rgba(255, 254, 253, 0) 360px),
    linear-gradient(90deg, rgba(49, 95, 85, 0.08), rgba(166, 90, 67, 0.04) 46%, rgba(49, 95, 85, 0.08)),
    var(--canvas);
  font-size: 15.25px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

.site-shell {
  width: min(var(--site-width), calc(100% - var(--site-gutter)));
  margin: 24px auto;
  overflow: clip;
  background: var(--paper);
  border: 1px solid rgba(20, 32, 31, 0.09);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px 32px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 254, 253, 0.78), transparent 280px),
    linear-gradient(90deg, rgba(96, 76, 48, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.02) 1px, transparent 1px),
    rgba(252, 248, 238, 0.94);
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(96, 76, 48, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 232px;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a,
.nav-group > button,
.nav-group > .nav-parent-link {
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 9px 12px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-group > button:hover,
.nav-group > .nav-parent-link:hover {
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.5), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border-color: rgba(96, 76, 48, 0.14);
  color: #8d4c38;
  box-shadow:
    inset 0 0 16px rgba(96, 76, 48, 0.045),
    0 7px 16px rgba(42, 35, 24, 0.045);
}

.nav-group {
  position: relative;
}

.nav-group > button::after,
.nav-group > .nav-parent-link::after {
  content: "+";
  margin-left: 8px;
  color: var(--ochre);
  font-weight: 800;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 292px;
  padding: 10px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.02) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 18px rgba(96, 76, 48, 0.04),
    0 22px 44px rgba(23, 32, 31, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  display: none;
}

.nav-group:focus-within::before,
.nav-group.is-open::before {
  display: block;
}

.nav-group:focus-within .submenu-desktop,
.nav-group.is-open .submenu-desktop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 901px) {
  .submenu-mobile {
    display: none !important;
  }
}

.submenu a {
  padding: 10px 12px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 650;
  color: var(--ink);
}

.nav-group-collections {
  position: static;
}

.nav-group-collections::before {
  left: 0;
  right: 0;
  top: 76px;
  height: 82px;
  z-index: 29;
}

.collections-mega {
  left: 32px;
  right: 32px;
  top: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 0.78fr);
  gap: 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.02) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-top: 3px solid rgba(166, 90, 67, 0.48);
  box-shadow:
    inset 0 0 18px rgba(96, 76, 48, 0.04),
    0 26px 60px rgba(20, 32, 31, 0.14);
}

.collections-mega section {
  min-height: 300px;
  padding: 26px 30px 28px;
  border-right: 1px solid rgba(20, 32, 31, 0.1);
}

.collections-mega section:last-child {
  border-right: 0;
}

.collections-mega h3 {
  margin: 0 0 14px;
  color: #5b3935;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.collections-mega h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--clay);
  border-radius: 2px;
  transform: translateY(-1px);
}

.collections-mega a {
  position: relative;
  display: block;
  padding: 6px 0 6px 16px;
  color: #654b47;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.collections-mega a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  background: rgba(91, 57, 53, 0.54);
  border-radius: 999px;
}

.collections-mega a:hover,
.collections-mega a.is-active {
  background: transparent;
  color: #8d4c38;
}

.library-mega {
  left: -317px;
  transform: translate(0, 8px);
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 0;
  min-width: 520px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.02) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-top: 3px solid rgba(166, 90, 67, 0.48);
  box-shadow:
    inset 0 0 18px rgba(96, 76, 48, 0.04),
    0 26px 60px rgba(20, 32, 31, 0.14);
}

.nav-group:focus-within .library-mega.submenu-desktop,
.nav-group.is-open .library-mega.submenu-desktop {
  transform: translate(0, 0);
}

.library-mega section {
  padding: 24px 26px 26px;
  border-right: 1px solid rgba(20, 32, 31, 0.1);
}

.library-mega section:last-child {
  border-right: 0;
}

.library-mega h3 {
  margin: 0 0 14px;
  color: #5b3935;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.library-mega h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--clay);
  border-radius: 2px;
  transform: translateY(-1px);
}

.library-mega a {
  position: relative;
  display: block;
  padding: 7px 0 7px 16px;
  color: #654b47;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.library-mega a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 4px;
  height: 4px;
  background: rgba(91, 57, 53, 0.54);
  border-radius: 999px;
}

.library-mega a:hover,
.library-mega a.is-active {
  background: transparent;
  color: #8d4c38;
}

.nav-submenu-overview {
  display: none;
}

.nav-submenu-label {
  margin: 0;
  padding: 10px 12px 6px;
  border-top: 1px solid rgba(20, 32, 31, 0.12);
  color: rgba(91, 57, 53, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.nav-submenu-label:first-child {
  border-top: 0;
  padding-top: 4px;
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 60, 54, 0.95), rgba(15, 60, 54, 0.58) 48%, rgba(15, 60, 54, 0.05)),
    linear-gradient(180deg, transparent 50%, rgba(15, 60, 54, 0.62));
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 36px;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 148, 62, 0.9), rgba(178, 91, 63, 0.78));
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: 72px 48px 66px;
  color: var(--white);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--green-2);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.82) contrast(1.04);
  transform: scale(1.035);
  animation: heroFade 25s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide:nth-child(4) {
  animation-delay: 15s;
}

.hero-slide:nth-child(5) {
  animation-delay: 20s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.035);
  }

  6%,
  20% {
    opacity: 1;
  }

  26%,
  100% {
    opacity: 0;
    transform: scale(1.075);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.feature-copy .section-kicker {
  color: #f0d28e;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.17;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 600;
}

h1 {
  margin-bottom: 0;
  max-width: 820px;
  font-size: 42px;
}

h2 {
  margin-bottom: 0;
  max-width: 840px;
  font-size: 26px;
}

h3 {
  font-size: 16px;
  font-weight: 650;
}

.hero-lede {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 254, 253, 0.88);
  font-size: 16.2px;
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.primary-action {
  background: var(--white);
  color: var(--green-2);
}

.secondary-action {
  border: 1px solid rgba(255, 254, 253, 0.42);
  color: var(--white);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero-note {
  position: absolute;
  top: 34px;
  right: 38px;
  width: 184px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 254, 253, 0.1);
  border: 1px solid rgba(255, 254, 253, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: #f0d28e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
}

.section {
  padding: 52px 48px;
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.intro-grid-featured {
  padding: 30px;
  background: rgba(255, 254, 253, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.home-copy {
  display: grid;
  gap: 15px;
  color: var(--ink-soft);
  font-size: 17px;
}

.home-copy p,
.section-lede {
  margin: 0;
}

.home-intro-section {
  padding-bottom: 34px;
}

.home-intro-section,
.home-evidence-section,
.home-archives-section,
.home-location-section,
.home-location-section + .section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.022) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.compact-header {
  margin-bottom: 20px;
}

.home-split-refined {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: start;
}

.home-split-refined .home-copy {
  max-width: 760px;
  align-content: start;
  gap: 13px;
  font-size: 15.05px;
  line-height: 1.74;
}

.home-facts {
  display: grid;
  gap: 12px;
  overflow: visible;
  align-self: start;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.home-facts article {
  position: relative;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 20px rgba(96, 76, 48, 0.052),
    0 9px 18px rgba(42, 35, 24, 0.045);
}

.home-facts article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 42px;
  height: 12px;
  background: rgba(230, 219, 190, 0.68);
  border: 1px solid rgba(96, 76, 48, 0.1);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.055);
  transform: rotate(-4deg);
}

.home-facts span {
  display: block;
  color: #8d4c38;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-facts strong {
  display: block;
  margin-top: 6px;
  color: var(--green-2);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.home-evidence-stack {
  display: grid;
  gap: 18px;
}

.home-evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  min-height: 360px;
  overflow: hidden;
  background: var(--green-2);
  border: 1px solid rgba(20, 32, 31, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.home-evidence-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
}

.home-evidence-card div {
  display: grid;
  align-content: center;
  padding: 52px 48px;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.05), rgba(255, 254, 253, 0)),
    var(--green-2);
}

.home-evidence-card span {
  margin-bottom: 10px;
  color: #f0d28e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-evidence-card h3 {
  margin: 0;
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 28px;
  line-height: 1.14;
}

.home-evidence-card p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 254, 253, 0.82);
  font-size: 15px;
  line-height: 1.66;
}

.home-evidence-card em {
  width: fit-content;
  margin-top: 26px;
  padding: 12px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 254, 253, 0.34);
  border-radius: var(--radius);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.home-evidence-card:hover em {
  background: rgba(255, 254, 253, 0.08);
  border-color: rgba(255, 254, 253, 0.52);
}

.home-archives-section {
  overflow: hidden;
}

.home-archive-carousel {
  position: relative;
  margin-top: 22px;
}

.home-archive-rail {
  display: flex;
  gap: 14px;
  margin-top: 0;
  margin-inline: -48px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 48px 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(49, 95, 85, 0.34) rgba(20, 32, 31, 0.06);
}

.home-archive-arrow {
  position: absolute;
  top: 46%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0 0 3px;
  color: var(--white);
  background: rgba(18, 59, 53, 0.94);
  border: 1px solid rgba(255, 254, 253, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(20, 32, 31, 0.22);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.home-archive-arrow:hover {
  background: #0f4038;
  transform: translateY(-50%) scale(1.04);
}

.home-archive-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}

.home-archive-arrow-left {
  left: 8px;
}

.home-archive-arrow-right {
  right: 8px;
}

.home-archive-rail::-webkit-scrollbar {
  height: 9px;
}

.home-archive-rail::-webkit-scrollbar-track {
  background: rgba(20, 32, 31, 0.06);
  border-radius: 999px;
}

.home-archive-rail::-webkit-scrollbar-thumb {
  background: rgba(49, 95, 85, 0.34);
  border-radius: 999px;
}

.home-archive-card {
  position: relative;
  flex: 0 0 286px;
  display: grid;
  align-content: end;
  min-height: 330px;
  overflow: hidden;
  padding: 18px;
  isolation: isolate;
  background: #182520;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  scroll-snap-align: start;
}

.home-archive-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 220ms ease;
}

.home-archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 21, 19, 0.02), rgba(12, 21, 19, 0.84)),
    linear-gradient(90deg, rgba(12, 21, 19, 0.54), rgba(12, 21, 19, 0.08));
}

.home-archive-card:hover img {
  transform: scale(1.035);
}

.home-archive-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: #f7df9e;
  background: rgba(18, 59, 53, 0.76);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.home-archive-card strong {
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.15;
}

.home-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1fr);
  gap: 26px;
  align-items: center;
}

.home-location-grid h2 {
  max-width: 520px;
  margin-bottom: 14px;
}

.home-location-grid p {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.home-osm-map {
  position: relative;
  padding: 8px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 12px 26px rgba(42, 35, 24, 0.07);
}

.home-osm-map::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  z-index: 2;
  width: 54px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.home-osm-map iframe {
  border: 6px solid rgba(255, 254, 253, 0.7);
  border-radius: 4px;
  box-shadow:
    0 8px 18px rgba(42, 35, 24, 0.12),
    0 1px 0 rgba(255, 254, 253, 0.82);
}

.home-location-section + .section .tile {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.home-location-section + .section .tile::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.home-location-section + .section .tile::after {
  display: none;
}

.home-location-section + .section .tile:hover {
  transform: translateY(-2px);
}

.home-osm-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  filter: saturate(0.78) contrast(0.98);
}

.framed-image,
.map-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(23, 32, 31, 0.08);
}

.framed-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.framed-image figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
}

.section-muted {
  background: rgba(255, 254, 253, 0.36);
}

.section.home-intro-section,
.section.home-evidence-section,
.section.home-archives-section,
.section.home-location-section,
.home-location-section + .section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.58), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.022) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.9fr) minmax(260px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.info-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 3px;
}

.info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.map-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.catalog-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  background: var(--green-2);
  color: var(--white);
  border-radius: var(--radius);
}

.catalog-callout h2 {
  max-width: 720px;
}

.catalog-callout p {
  margin: 12px 0 0;
  color: rgba(255, 254, 253, 0.78);
  font-size: 16px;
}

.dark-action {
  flex: 0 0 auto;
}

.feature-copy .secondary-action {
  width: fit-content;
  margin-top: 18px;
}

.section-lede {
  max-width: 880px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.archive-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(23, 32, 31, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.archive-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(23, 32, 31, 0.09);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.archive-card span {
  display: block;
  min-height: 68px;
  padding: 14px 15px;
  font-weight: 700;
  line-height: 1.35;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.news-list h3 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.42;
}

.lead-copy {
  margin: 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 19px;
}

.quiet-panel {
  padding: 26px;
  background: rgba(255, 254, 253, 0.72);
  border: 1px solid var(--line);
  border-top: 5px solid var(--ochre);
  border-radius: var(--radius);
}

.signature-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-panel p {
  font-family: "Noto Serif", Georgia, serif;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.32;
}

.quiet-panel p {
  margin: 0;
  color: var(--muted);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile,
.collection-item,
.content-placeholder {
  background: rgba(255, 254, 253, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(23, 32, 31, 0.04);
}

.tile {
  min-height: 168px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--ochre), var(--clay));
  opacity: 0;
  transition: opacity 160ms ease;
}

.tile:hover,
.collection-item:hover {
  border-color: rgba(178, 91, 63, 0.34);
  box-shadow: 0 14px 26px rgba(23, 32, 31, 0.08);
  transform: translateY(-3px);
}

.tile:hover::after {
  opacity: 1;
}

.tile span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
}

.tile h3,
.collection-item h3 {
  margin: 0 0 12px;
}

.tile p,
.collection-item p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--green-2);
  color: var(--white);
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.feature-copy {
  display: grid;
  align-content: center;
  padding: 56px 48px;
}

.feature-copy p {
  color: rgba(255, 254, 253, 0.82);
  font-size: 16.5px;
}

.page-hero {
  position: relative;
  padding: 32px 48px 0;
  background:
    linear-gradient(180deg, rgba(18, 59, 53, 0.035), rgba(18, 59, 53, 0)),
    transparent;
  border-bottom: 0;
}

.site-shell:has(.page-layout) .page-hero {
  padding-left: 310px;
  padding-right: 52px;
}

.page-hero::after {
  display: none;
}

.breadcrumbs {
  margin: 0 0 6px;
  color: rgba(49, 95, 85, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero h1 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  color: #101b1a;
  font-size: 26px;
  line-height: 1.18;
}

.page-hero h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-2), rgba(166, 90, 67, 0.64), transparent);
  border-radius: 999px;
}

.page-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-title-row h1 {
  margin: 0;
}

.page-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 42px;
  padding: 26px 52px 66px 48px;
}

.side-nav {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 4px;
  padding: 10px 0 10px;
  border-left: 1px solid rgba(18, 59, 53, 0.16);
}

.side-nav a {
  padding: 9px 0 9px 14px;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  border-radius: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.side-nav a:hover,
.side-nav a.is-active {
  color: #8d4c38;
  border-left-color: rgba(141, 76, 56, 0.82);
  background: transparent;
}

.content-placeholder {
  min-height: 420px;
  padding: 36px;
}

.article-body {
  display: grid;
  gap: 18px;
  max-width: 790px;
}

.article-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.76;
}

.article-body strong {
  color: var(--ink);
}

.article-card {
  padding: 26px 28px;
  background: rgba(255, 254, 253, 0.72);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-top-color: rgba(18, 59, 53, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(20, 32, 31, 0.045);
}

.article-card h2 {
  margin-bottom: 13px;
  color: #101b1a;
  font-size: 21px;
  line-height: 1.24;
}

.article-card p + p {
  margin-top: 14px;
}

.site-shell:has(.side-nav) .page-hero,
.site-shell:has(.side-nav) .page-layout {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.site-shell:has(.side-nav) .page-hero {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(96, 76, 48, 0.16);
}

.site-shell:has(.side-nav) .side-nav {
  padding: 15px 0;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.44), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.site-shell:has(.side-nav) .side-nav a {
  margin: 1px 10px 1px 0;
  padding-left: 15px;
}

.site-shell:has(.side-nav) .side-nav a.is-active,
.site-shell:has(.side-nav) .side-nav a:hover {
  background: rgba(255, 254, 253, 0.38);
}

.site-shell:has(.side-nav) .article-card,
.site-shell:has(.side-nav) .article-media,
.site-shell:has(.side-nav) .fact-item,
.site-shell:has(.side-nav) .download-panel,
.site-shell:has(.side-nav) .quiet-list li,
.site-shell:has(.side-nav) .content-placeholder {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 24px rgba(96, 76, 48, 0.055),
    0 10px 22px rgba(42, 35, 24, 0.055);
}

.site-shell:has(.side-nav) .article-card::before,
.site-shell:has(.side-nav) .article-media::before,
.site-shell:has(.side-nav) .fact-item::before,
.site-shell:has(.side-nav) .download-panel::before,
.site-shell:has(.side-nav) .quiet-list li::before,
.site-shell:has(.side-nav) .content-placeholder::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.site-shell:has(.side-nav) .article-media {
  padding: 8px;
  overflow: visible;
}

.site-shell:has(.side-nav) .article-media img {
  border: 6px solid rgba(255, 254, 253, 0.72);
  border-radius: 4px;
  box-shadow:
    0 8px 18px rgba(42, 35, 24, 0.12),
    0 1px 0 rgba(255, 254, 253, 0.82);
}

.site-shell:has(.side-nav) .article-media figcaption {
  padding: 10px 6px 2px;
}

.site-shell:has(.side-nav) .fact-item {
  padding: 18px 16px 15px;
}

.site-shell:has(.side-nav) .download-panel {
  align-items: center;
  overflow: visible;
  color: var(--ink);
}

.site-shell:has(.side-nav) .download-panel h2 {
  color: var(--ink);
}

.site-shell:has(.side-nav) .download-panel p {
  color: var(--ink-soft);
}

.site-shell:has(.side-nav) .download-panel .section-kicker {
  color: #8d4c38;
}

.site-shell:has(.side-nav) .download-panel .primary-action {
  background: var(--green-2);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(18, 59, 53, 0.12);
}

.site-shell:has(.side-nav) .quiet-list {
  gap: 13px;
}

.site-shell:has(.side-nav) .quiet-list li {
  padding: 17px 19px 17px 42px;
}

.site-shell:has(.side-nav) .quiet-list li::before {
  left: 18px;
  width: 42px;
}

.portrait-intro {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.portrait-media {
  margin: 0;
}

.portrait-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: var(--radius);
  filter: saturate(0.86) contrast(0.94);
}

.portrait-media figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.article-media {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.article-media img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.article-body > .article-media:first-child img {
  max-height: 380px;
}

.article-media figcaption {
  padding: 12px 16px;
  color: var(--muted);
  font-size: 13px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.fact-item {
  padding: 15px 16px;
  background: rgba(255, 254, 253, 0.7);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(20, 32, 31, 0.035);
}

.fact-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-item strong {
  display: block;
  font-size: 15px;
}

.quiet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  padding: 13px 17px 13px 32px;
  color: var(--ink-soft);
  background: rgba(255, 254, 253, 0.68);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  font-size: 15px;
}

.quiet-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 23px;
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 999px;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 28px;
  background:
    linear-gradient(135deg, rgba(18, 59, 53, 0.98), rgba(49, 95, 85, 0.92));
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(18, 59, 53, 0.16);
}

.download-panel p {
  margin: 8px 0 0;
  color: rgba(255, 254, 253, 0.78);
  font-size: 15px;
}

.download-panel .primary-action {
  flex: 0 0 auto;
}

.catalog-download {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  color: var(--ink);
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 12px 26px rgba(42, 35, 24, 0.07);
}

.catalog-download::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 54px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.catalog-download h2 {
  color: var(--ink);
}

.catalog-download p {
  color: var(--ink-soft);
}

.catalog-download .primary-action {
  color: var(--white);
  background: var(--green-2);
}

.catalog-download .secondary-action {
  color: var(--green-2);
  border-color: rgba(18, 59, 53, 0.28);
}

.catalog-hero-section {
  padding-top: 42px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.site-shell:has(.catalog-hero-section) .page-hero {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 254, 253, 0.8), transparent 32%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(96, 76, 48, 0.16);
}

.catalog-paper-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.catalog-copy {
  display: grid;
  gap: 13px;
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.42), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.catalog-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.76;
}

.catalog-image {
  position: relative;
  margin: 0;
  overflow: visible;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 12px 26px rgba(42, 35, 24, 0.08);
}

.catalog-image::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  z-index: 2;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.catalog-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid rgba(255, 254, 253, 0.72);
  border-radius: 4px;
  box-shadow:
    0 8px 18px rgba(42, 35, 24, 0.12),
    0 1px 0 rgba(255, 254, 253, 0.82);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.catalog-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-steps article {
  position: relative;
  padding: 19px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.catalog-steps article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 20px;
  width: 48px;
  height: 13px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.catalog-steps span {
  display: block;
  margin-bottom: 14px;
  color: var(--ochre);
  font-size: 11px;
  font-weight: 800;
}

.catalog-steps h3 {
  margin-bottom: 10px;
}

.catalog-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.catalog-paper-section .article-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.catalog-paper-section .article-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.study-page-hero {
  padding-bottom: 28px;
}

.site-shell:has(.study-intro-section) .study-page-hero {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 254, 253, 0.8), transparent 32%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(96, 76, 48, 0.16);
}

.study-intro-section {
  padding-top: 38px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.study-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 36px;
  align-items: center;
}

.study-intro:not(:has(.study-image-panel)) {
  display: block;
  max-width: 860px;
  padding: 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.42), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.study-list-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.study-intro h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(23px, 2.35vw, 30px);
  line-height: 1.18;
}

.study-intro p:not(.section-kicker) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.study-image-panel {
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 254, 253, 0.74), rgba(241, 234, 220, 0.78)),
    var(--white);
  border: 1px solid rgba(20, 32, 31, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.study-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.02);
}

.study-image-panel figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.study-material-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 254, 253, 0.76), rgba(241, 234, 220, 0.76)),
    var(--white);
  border: 1px solid rgba(20, 32, 31, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.study-material-board p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12.4px;
  line-height: 1.5;
}

.material-tile {
  min-height: 122px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 31, 0.1);
  border-radius: 7px;
  box-shadow: inset 0 0 40px rgba(20, 32, 31, 0.13);
}

.material-stone {
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 254, 253, 0.32), transparent 20%),
    radial-gradient(circle at 70% 62%, rgba(20, 32, 31, 0.16), transparent 24%),
    linear-gradient(140deg, #c6bca6, #eee4cc 52%, #898f84);
}

.material-metal {
  background:
    radial-gradient(circle at 34% 42%, rgba(183, 137, 67, 0.42), transparent 21%),
    repeating-linear-gradient(132deg, rgba(255, 254, 253, 0.12) 0 1px, transparent 1px 8px),
    linear-gradient(140deg, #24302f, #815f45 55%, #171f1f);
}

.material-inscription {
  background:
    linear-gradient(90deg, rgba(20, 32, 31, 0.22) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 254, 253, 0.24), transparent 40%),
    linear-gradient(145deg, #d2c4a8, #f1e6cc);
}

.material-water {
  background:
    repeating-linear-gradient(170deg, rgba(255, 254, 253, 0.22) 0 2px, transparent 2px 15px),
    radial-gradient(circle at 26% 70%, rgba(255, 254, 253, 0.34), transparent 20%),
    linear-gradient(145deg, #315f55, #8fa79b 58%, #d9d0b7);
}

.material-paper {
  background:
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(20, 32, 31, 0.12) 13px 14px),
    linear-gradient(90deg, rgba(141, 76, 56, 0.22) 0 2px, transparent 2px 100%),
    linear-gradient(145deg, #ead9b8, #fff7e4);
}

.material-stone-dark {
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 254, 253, 0.32) 45% 55%, transparent 56%),
    linear-gradient(180deg, transparent 0 26%, rgba(255, 254, 253, 0.3) 27% 36%, transparent 37%),
    linear-gradient(145deg, #797267, #c8bea6 52%, #45514d);
}

.study-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.study-list-header span {
  color: var(--green-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.study-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.study-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  min-height: 238px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-top-color: rgba(96, 76, 48, 0.22);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 12px 26px rgba(42, 35, 24, 0.07);
}

.study-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.study-card-wide {
  grid-column: 1 / -1;
}

.study-token,
.study-thumb {
  position: relative;
  align-self: start;
  width: 96px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 31, 0.12);
  border-radius: 7px;
  background: var(--paper-2);
  box-shadow: inset 0 0 34px rgba(20, 32, 31, 0.12);
}

.study-thumb {
  margin: 0;
  background: rgba(255, 254, 253, 0.74);
  border: 6px solid rgba(255, 254, 253, 0.72);
  box-shadow:
    0 8px 18px rgba(42, 35, 24, 0.12),
    0 1px 0 rgba(255, 254, 253, 0.82);
}

.study-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.study-thumb-detail img {
  transform: scale(1.95);
  transform-origin: 72% 48%;
}

.study-thumb-water img {
  transform: scale(1.8);
  transform-origin: 82% 54%;
}

.study-thumb-paper img {
  transform: scale(2.35);
  transform-origin: 50% 8%;
  filter: sepia(0.26) saturate(0.72) contrast(1.04);
}

.study-thumb-memory img {
  transform: scale(2.05);
  transform-origin: 38% 52%;
  filter: sepia(0.32) saturate(0.68) contrast(1.08);
}

.study-thumb-fort img {
  transform: scale(1.9);
  transform-origin: 27% 44%;
  filter: sepia(0.22) saturate(0.72) contrast(1.08);
}

.study-token::before,
.study-token::after {
  content: "";
  position: absolute;
  inset: 0;
}

.study-token-stone {
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.42), rgba(255, 254, 253, 0) 34%),
    radial-gradient(circle at 24% 34%, rgba(84, 87, 78, 0.22), transparent 18%),
    radial-gradient(circle at 72% 64%, rgba(166, 90, 67, 0.18), transparent 24%),
    linear-gradient(135deg, #d7d1be, #aaa392 46%, #ebe2cc);
}

.study-token-stone::after {
  background:
    linear-gradient(82deg, transparent 0 38%, rgba(20, 32, 31, 0.16) 39% 41%, transparent 42%),
    linear-gradient(18deg, transparent 0 58%, rgba(255, 254, 253, 0.28) 59% 61%, transparent 62%);
}

.study-token-metal {
  background:
    radial-gradient(circle at 34% 36%, rgba(218, 179, 120, 0.38), transparent 20%),
    radial-gradient(circle at 68% 68%, rgba(6, 12, 13, 0.42), transparent 24%),
    linear-gradient(140deg, #2f3938, #7a5b43 52%, #1b2424);
}

.study-token-water {
  background:
    linear-gradient(160deg, rgba(255, 254, 253, 0.38), transparent 32%),
    repeating-linear-gradient(164deg, rgba(255, 254, 253, 0.2) 0 2px, transparent 2px 13px),
    linear-gradient(135deg, #355f5b, #8ba49a 55%, #e7dfc9);
}

.study-token-manuscript {
  background:
    linear-gradient(90deg, rgba(20, 32, 31, 0.16) 0 1px, transparent 1px 100%),
    repeating-linear-gradient(180deg, transparent 0 12px, rgba(20, 32, 31, 0.11) 13px 14px),
    linear-gradient(145deg, #f0e3c9, #fff8e8);
}

.study-token-manuscript::after {
  inset: 18px 20px;
  border-top: 2px solid rgba(141, 76, 56, 0.42);
  border-bottom: 2px solid rgba(49, 95, 85, 0.28);
}

.study-token-memorial {
  background:
    linear-gradient(90deg, transparent 44%, rgba(255, 254, 253, 0.45) 45% 55%, transparent 56%),
    linear-gradient(180deg, transparent 0 26%, rgba(255, 254, 253, 0.42) 27% 36%, transparent 37%),
    linear-gradient(140deg, #b6afa0, #ded4bd 48%, #8b9188);
}

.study-token-fort {
  background:
    linear-gradient(90deg, rgba(20, 32, 31, 0.18) 0 2px, transparent 2px 24px),
    linear-gradient(180deg, rgba(255, 254, 253, 0.2), transparent 38%),
    linear-gradient(135deg, #9f8f75, #d9ccb2 55%, #6f786e);
}

.study-token-fort::after {
  inset: 18px 14px auto;
  height: 34px;
  background:
    linear-gradient(90deg, #6b6254 0 16%, transparent 16% 28%, #6b6254 28% 44%, transparent 44% 56%, #6b6254 56% 72%, transparent 72% 84%, #6b6254 84%);
  opacity: 0.34;
}

.study-card-body {
  display: grid;
  gap: 9px;
}

.study-type {
  color: #8d4c38;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.study-card h2 {
  margin: 0;
  color: #101b1a;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.25;
}

.study-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13.9px;
  line-height: 1.66;
}

.study-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 3px;
}

.study-meta span {
  padding: 4px 8px;
  color: rgba(20, 32, 31, 0.72);
  background: rgba(49, 95, 85, 0.08);
  border: 1px solid rgba(49, 95, 85, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.study-download {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  margin-top: 4px;
  padding: 9px 12px;
  color: var(--green-2);
  background: rgba(255, 254, 253, 0.64);
  border: 1px solid rgba(18, 59, 53, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.study-download:hover {
  color: var(--white);
  background: var(--green-2);
  border-color: var(--green-2);
}

.contact-page {
  padding-top: 40px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.site-shell:has(.contact-page) .page-hero {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 254, 253, 0.8), transparent 32%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(96, 76, 48, 0.16);
}

.contact-intro {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 22px 24px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.42), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.contact-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-details {
  order: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact-details article {
  position: relative;
  min-height: 148px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.contact-details article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 20px;
  width: 48px;
  height: 13px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details strong {
  display: block;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
}

.contact-details p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.contact-details a,
.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.osm-map {
  position: relative;
  order: 2;
  overflow: visible;
  min-height: 370px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 16px 32px rgba(42, 35, 24, 0.12);
}

.osm-map::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  z-index: 3;
  width: 58px;
  height: 14px;
  background: rgba(230, 219, 190, 0.74);
  border: 1px solid rgba(96, 76, 48, 0.12);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.08);
  transform: rotate(-5deg);
}

.map-fallback {
  position: absolute;
  inset: 0 0 50px;
  display: grid;
  place-content: center;
  gap: 6px;
  color: rgba(18, 59, 53, 0.72);
  text-align: center;
  pointer-events: none;
}

.map-fallback::before {
  content: "";
  width: 18px;
  height: 18px;
  margin: 0 auto 6px;
  background: var(--clay);
  border: 3px solid rgba(255, 254, 253, 0.9);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 22px rgba(20, 32, 31, 0.16);
  transform: rotate(-45deg);
}

.map-fallback span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-fallback strong {
  font-size: 13px;
  font-weight: 700;
}

.osm-map iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100% - 32px);
  height: 316px;
  margin: 16px 16px 0;
  border: 8px solid rgba(255, 254, 253, 0.74);
  border-radius: 5px;
  opacity: 0.93;
  box-shadow: 0 10px 22px rgba(42, 35, 24, 0.12);
  filter: saturate(0.78) contrast(0.98);
}

.osm-map > a {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 16px 16px;
  padding: 13px 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 254, 253, 0.5);
  border: 1px solid rgba(96, 76, 48, 0.12);
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.placeholder-rule {
  height: 14px;
  margin: 18px 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 92, 79, 0.22), rgba(64, 93, 114, 0.05));
}

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

.collection-item {
  min-height: 220px;
  padding: 26px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.collections-page {
  padding-top: 34px;
  padding-bottom: 34px;
}

.collections-hero {
  padding: 54px 48px 46px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 254, 253, 0.8), transparent 32%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f4ead8;
  background-size: auto, 34px 34px, 34px 34px, auto;
  border-bottom: 1px solid rgba(96, 76, 48, 0.16);
}

.collections-hero-copy h1 {
  width: fit-content;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(166, 90, 67, 0.34);
}

.collections-hero-copy p:not(.breadcrumbs) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.2px;
  line-height: 1.72;
}

.collections-overview {
  padding-top: 26px;
  padding-bottom: 26px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.34), rgba(238, 226, 203, 0.52)),
    #f2e8d5;
}

.collections-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.collections-overview-grid article {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 24px rgba(96, 76, 48, 0.055),
    0 10px 22px rgba(42, 35, 24, 0.055);
}

.collections-overview-grid article::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.collections-overview-grid span {
  display: block;
  color: #8d4c38;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collections-overview-grid strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--green-2);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.collections-overview-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.56;
}

.collections-lead {
  max-width: 860px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(20, 32, 31, 0.12);
}

.collections-page,
.collections-catalog-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.collections-lead p,
.collections-copy p,
.collections-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.74;
}

.collections-lead h2 {
  max-width: 720px;
  font-size: 24px;
  line-height: 1.23;
}

.collections-lead > p {
  max-width: 760px;
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 14.8px;
}

.collections-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 860px;
}

.collections-copy {
  display: grid;
  gap: 13px;
  max-width: 820px;
  padding-top: 4px;
}

.collections-note {
  max-width: 820px;
  margin-top: 2px;
  padding: 17px 19px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.42), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-left: 3px solid rgba(166, 90, 67, 0.48);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 10px 20px rgba(42, 35, 24, 0.05);
}

.collections-note span,
.archive-feature-copy span {
  display: block;
  margin-bottom: 10px;
  color: #8d4c38;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collections-note span {
  color: #8d4c38;
}

.collections-note p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.collections-note p + p {
  margin-top: 12px;
}

.collections-note a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding-bottom: 2px;
  color: var(--green);
  border-bottom: 1px solid rgba(49, 95, 85, 0.38);
  font-size: 12.5px;
  font-weight: 850;
}

.collections-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 14px;
}

.collections-grid-header {
  align-items: center;
  margin-bottom: 22px;
}

.collections-showcase-all {
  grid-auto-flow: dense;
  grid-auto-rows: 78px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collections-showcase-all .collection-feature-card {
  grid-row: span 3;
  min-height: 0;
}

.collections-showcase-all .collection-feature-card h3 {
  font-size: 19px;
}

.collections-showcase-all .collection-feature-card:nth-child(2),
.collections-showcase-all .collection-feature-card:nth-child(6),
.collections-showcase-all .collection-feature-card:nth-child(12) {
  grid-column: span 2;
  grid-row: span 4;
}

.collections-showcase-all .collection-feature-card:nth-child(1),
.collections-showcase-all .collection-feature-card:nth-child(8),
.collections-showcase-all .collection-feature-card:nth-child(15),
.collections-showcase-all .collection-feature-card:nth-child(18) {
  grid-row: span 4;
}

.collections-showcase-all .collection-feature-card:nth-child(7),
.collections-showcase-all .collection-feature-card:nth-child(11),
.collections-showcase-all .collection-feature-card:nth-child(16) {
  grid-row: span 5;
}

.collection-feature-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 260px;
  overflow: hidden;
  padding: 18px;
  isolation: isolate;
  background: #182520;
  border: 8px solid rgba(255, 254, 253, 0.74);
  border-radius: 6px;
  box-shadow:
    0 16px 32px rgba(42, 35, 24, 0.16),
    0 1px 0 rgba(255, 254, 253, 0.82);
}

.collection-feature-card.large {
  grid-row: span 2;
  min-height: 534px;
}

.collection-feature-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  transition: transform 220ms ease;
}

.collection-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 21, 19, 0.04), rgba(12, 21, 19, 0.82)),
    linear-gradient(90deg, rgba(12, 21, 19, 0.58), rgba(12, 21, 19, 0.08));
}

.collection-feature-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  z-index: 2;
  width: 54px;
  height: 14px;
  background: rgba(230, 219, 190, 0.74);
  border: 1px solid rgba(96, 76, 48, 0.12);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.08);
  pointer-events: none;
  transform: rotate(-5deg);
}

.collection-feature-card:hover img {
  transform: scale(1.035);
}

.collection-feature-card span {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-bottom: 9px;
  padding: 5px 8px;
  color: #f7df9e;
  background: rgba(18, 59, 53, 0.72);
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.collection-feature-card h3 {
  position: relative;
  z-index: 3;
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 21px;
  line-height: 1.18;
}

.collection-feature-card:not(.large) h3 {
  font-size: 17px;
}

.collection-feature-card p {
  max-width: 460px;
  margin: 12px 0 0;
  color: rgba(255, 254, 253, 0.82);
  font-size: 14.5px;
  line-height: 1.58;
}

.collection-directory-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.collection-directory-header h2 {
  margin: 0;
}

.collection-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.collection-directory a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  background: rgba(255, 254, 253, 0.68);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.collection-directory a:hover {
  transform: translateY(-1px);
  background: var(--white);
  border-color: rgba(141, 76, 56, 0.28);
}

.collection-directory strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-directory span {
  min-width: 38px;
  padding: 4px 8px;
  color: var(--green-2);
  background: rgba(49, 95, 85, 0.08);
  border: 1px solid rgba(49, 95, 85, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.history-resource-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
}

.history-paper-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.64), transparent 30%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.025) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.history-paper-section .history-resource-band {
  padding: 20px 0;
}

.history-resource-band h2 {
  max-width: 520px;
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.history-resource-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.history-resource-cards a {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.48), rgba(241, 229, 205, 0.58)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.16);
  border-radius: 7px;
  box-shadow:
    inset 0 0 22px rgba(96, 76, 48, 0.055),
    0 12px 26px rgba(42, 35, 24, 0.08);
}

.history-resource-cards a::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 22px;
  z-index: 2;
  width: 52px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.11);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.07);
  transform: rotate(-4deg);
}

.history-resource-cards img {
  width: calc(100% - 16px);
  margin: 8px 8px 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 6px solid rgba(255, 254, 253, 0.72);
  border-radius: 4px;
  box-shadow:
    0 8px 18px rgba(42, 35, 24, 0.12),
    0 1px 0 rgba(255, 254, 253, 0.82);
  filter: saturate(0.84) contrast(1.02);
}

.history-resource-cards strong,
.history-resource-cards span {
  display: block;
  padding-inline: 15px;
}

.history-resource-cards strong {
  padding-top: 14px;
  color: var(--ink);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.2;
}

.history-resource-cards span {
  padding-top: 5px;
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.archive-feature-grid {
  display: grid;
  gap: 18px;
}

.archive-feature-card {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.82fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255, 254, 253, 0.84);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.archive-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.76fr 0.76fr;
  grid-template-rows: repeat(2, 1fr);
  min-height: 260px;
  background: #e9e2d4;
}

.archive-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.archive-gallery img:first-child {
  grid-row: span 2;
}

.archive-feature-copy {
  display: grid;
  align-content: center;
  padding: 26px 30px;
  border-left: 1px solid rgba(20, 32, 31, 0.08);
}

.archive-feature-copy h3 {
  margin: 0 0 12px;
  color: #101b1a;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
}

.archive-feature-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.archive-feature-copy a {
  width: fit-content;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.collection-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.collection-index .primary-action {
  flex: 0 0 auto;
  background: var(--green-2);
  color: var(--white);
}

.photo-archive-page {
  padding-top: 38px;
}

.photo-archive-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(20, 32, 31, 0.12);
}

.archive-intro-compact {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 14px;
}

.archive-intro-compact .archive-stats {
  width: min(460px, 100%);
  margin-left: auto;
}

.archive-count {
  width: fit-content;
  margin: 0;
  flex: 0 0 auto;
  padding: 5px 0 7px;
  color: rgba(57, 72, 69, 0.76);
  border-bottom: 1px solid rgba(166, 90, 67, 0.38);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.photo-archive-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.68;
}

.archive-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(18, 59, 53, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(18, 59, 53, 0.16);
}

.archive-stats div {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 254, 253, 0.16);
}

.archive-stats div:last-child {
  border-right: 0;
}

.archive-stats span {
  display: block;
  color: rgba(255, 254, 253, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-stats strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 20px;
}

.decade-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 32, 31, 0.08);
}

.decade-filters button {
  border: 1px solid rgba(20, 32, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 254, 253, 0.66);
  color: var(--ink-soft);
  cursor: pointer;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}

.decade-filters button.is-active,
.decade-filters button:hover {
  background: var(--green-2);
  color: var(--white);
}

.photo-records {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.photo-record {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 320px 280px;
  gap: 0;
  overflow: hidden;
  background: rgba(255, 254, 253, 0.86);
  border: 1px solid rgba(20, 32, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 32, 31, 0.055);
}

.photo-record.is-filtered-out {
  display: none;
}

.photo-side {
  display: grid;
  grid-template-rows: 1fr;
  place-items: center;
  min-height: 340px;
  border-right: 1px solid rgba(20, 32, 31, 0.08);
  background: rgba(244, 239, 229, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 253, 0.54),
    inset 0 0 22px rgba(20, 32, 31, 0.045);
}

.photo-side img {
  width: auto;
  height: auto;
  max-width: min(100%, 520px);
  max-height: 480px;
  object-fit: contain;
  cursor: zoom-in;
  padding: 16px;
}

.photo-record:has(.photo-missing) .photo-side img {
  max-width: min(100%, 620px);
}

.photo-side:nth-of-type(2) img {
  max-width: min(100%, 300px);
  max-height: 520px;
}

.photo-missing {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 16px;
  padding: 18px;
  color: rgba(57, 72, 69, 0.68);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.photo-info {
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(18, 59, 53, 0.025), rgba(18, 59, 53, 0)),
    rgba(255, 254, 253, 0.78);
}

.photo-info h2 {
  margin-bottom: 10px;
  color: #172522;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0;
}

.photo-quick-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
}

.photo-quick-meta div:first-child {
  display: none;
}

.photo-quick-meta div {
  display: grid;
  gap: 4px;
}

.photo-quick-meta span {
  color: rgba(114, 128, 123, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.photo-quick-meta strong {
  color: rgba(57, 72, 69, 0.9);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.photo-info dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.photo-info div {
  display: grid;
  gap: 3px;
}

.photo-info dt {
  color: rgba(141, 76, 56, 0.82);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-info dd {
  margin: 0;
  color: #384844;
  font-size: 12.8px;
  line-height: 1.42;
}

.decade-pill {
  display: inline-flex;
  width: fit-content;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 4px 8px;
  background: rgba(18, 59, 53, 0.08);
  color: var(--green-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.photo-archive-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 254, 253, 0.74), transparent 28%),
    linear-gradient(90deg, rgba(96, 76, 48, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(96, 76, 48, 0.035) 1px, transparent 1px),
    #f3ead9;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.photo-records {
  gap: 24px;
}

.photo-record {
  grid-template-columns: minmax(340px, 1fr) 330px 300px;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255, 254, 253, 0.42), rgba(229, 214, 188, 0.3)),
    #efe2c9;
  border: 1px solid rgba(96, 76, 48, 0.2);
  border-radius: 7px;
  box-shadow:
    inset 0 0 36px rgba(96, 76, 48, 0.08),
    0 16px 34px rgba(42, 35, 24, 0.09);
}

.photo-side {
  position: relative;
  min-height: 370px;
  padding: 28px 20px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 254, 253, 0.52), transparent 52%),
    rgba(238, 226, 203, 0.62);
  border-right: 1px solid rgba(96, 76, 48, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 254, 253, 0.42),
    inset 0 0 26px rgba(96, 76, 48, 0.08);
}

.photo-side::before,
.photo-side::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 46px;
  height: 14px;
  background: rgba(230, 219, 190, 0.72);
  border: 1px solid rgba(96, 76, 48, 0.12);
  box-shadow: 0 3px 8px rgba(42, 35, 24, 0.08);
  pointer-events: none;
}

.photo-side::before {
  top: 22px;
  left: 26px;
  transform: rotate(-8deg);
}

.photo-side::after {
  right: 26px;
  bottom: 22px;
  transform: rotate(-7deg);
}

.photo-side-empty::before,
.photo-side-empty::after {
  display: none;
}

.photo-side img {
  position: relative;
  z-index: 2;
  max-width: min(100%, 560px);
  max-height: 500px;
  padding: 8px;
  background: rgba(255, 254, 253, 0.74);
  border: 1px solid rgba(96, 76, 48, 0.16);
  box-shadow:
    0 12px 24px rgba(42, 35, 24, 0.15),
    0 1px 0 rgba(255, 254, 253, 0.72);
}

.photo-record:nth-child(4n + 1) .photo-side:first-child img {
  transform: rotate(-0.35deg);
}

.photo-record:nth-child(4n + 2) .photo-side:first-child img {
  transform: rotate(0.28deg);
}

.photo-record:nth-child(4n + 3) .photo-side:first-child img {
  transform: rotate(-0.18deg);
}

.photo-side:nth-of-type(2) img {
  max-width: min(100%, 310px);
}

.photo-missing {
  min-height: 0;
  color: rgba(70, 58, 39, 0.46);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 12.2px;
  font-weight: 600;
}

.photo-info {
  justify-self: center;
  align-self: center;
  width: min(280px, calc(100% - 36px));
  margin: 18px;
  padding: 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.44), rgba(241, 229, 205, 0.56)),
    #eadcc1;
  border: 1px solid rgba(96, 76, 48, 0.18);
  border-radius: 6px;
  box-shadow:
    inset 0 0 24px rgba(96, 76, 48, 0.065),
    0 8px 18px rgba(42, 35, 24, 0.055);
}

.photo-info h2 {
  color: #17312c;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.photo-quick-meta {
  border-bottom-color: rgba(96, 76, 48, 0.17);
}

.photo-quick-meta span,
.photo-info dt {
  color: rgba(117, 72, 49, 0.84);
}

.photo-quick-meta strong,
.photo-info dd {
  color: rgba(39, 54, 50, 0.9);
}

.mobile-photo-viewer {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  overflow: auto;
  overscroll-behavior: contain;
  padding: 28px 118px 28px 184px;
  background: rgba(9, 14, 14, 0.9);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 254, 253, 0.32) rgba(255, 254, 253, 0.08);
}

.image-lightbox::-webkit-scrollbar {
  width: 9px;
}

.image-lightbox::-webkit-scrollbar-track {
  background: rgba(255, 254, 253, 0.07);
}

.image-lightbox::-webkit-scrollbar-thumb {
  background: rgba(255, 254, 253, 0.28);
  border: 2px solid rgba(9, 14, 14, 0.9);
  border-radius: 999px;
}

.image-lightbox::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 254, 253, 0.42);
}

.image-lightbox.is-open {
  display: block;
}

.image-lightbox-track {
  display: grid;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 28px 0;
  outline: 0;
}

.image-lightbox-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  place-items: center;
  min-height: calc(100vh - 90px);
  margin: 0;
  scroll-snap-align: center;
}

.image-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  overflow: hidden;
  perspective: 1400px;
}

.image-lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 100%;
}

.image-lightbox-item img {
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 116px);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  transform-origin: center;
  transition: transform 180ms ease;
  will-change: transform;
}

.image-lightbox-item img.is-zoomed {
  cursor: grab;
}

.image-lightbox-item img.is-panning {
  cursor: grabbing;
  transition: none;
}

.image-lightbox-flip {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: calc(100vh - 116px);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  perspective: inherit;
}

.image-lightbox-flip-inner {
  position: relative;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.22, 0.8, 0.26, 1);
}

.image-lightbox-item.is-flipped .image-lightbox-flip-inner {
  transform: rotateY(180deg);
}

.image-lightbox-flip-side {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
}

.image-lightbox-flip-back {
  transform: rotateY(180deg);
}

.image-lightbox-back-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 10px;
  color: rgba(255, 254, 253, 0.88);
  background: rgba(18, 59, 53, 0.78);
  border: 1px solid rgba(255, 254, 253, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.image-lightbox-item.is-flipped .image-lightbox-back-badge {
  background: rgba(141, 76, 56, 0.76);
}

.image-lightbox-caption {
  align-self: center;
  width: 100%;
  padding: 18px 20px;
  color: rgba(255, 254, 253, 0.84);
  background: rgba(255, 254, 253, 0.06);
  border: 1px solid rgba(255, 254, 253, 0.11);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.image-lightbox-caption strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Noto Serif", Georgia, serif;
  font-size: 18px;
  line-height: 1.25;
}

.image-lightbox-caption dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.image-lightbox-caption div {
  display: grid;
  gap: 2px;
}

.image-lightbox-caption dt {
  color: rgba(255, 254, 253, 0.52);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.image-lightbox-caption dd {
  margin: 0;
  color: rgba(255, 254, 253, 0.82);
  font-size: 12.5px;
  line-height: 1.42;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.image-lightbox-zoom-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 102;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.image-lightbox-item.is-active .image-lightbox-zoom-controls {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-zoom-controls button {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(9, 14, 14, 0.48);
  color: var(--white);
  cursor: pointer;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.image-lightbox-zoom-controls button::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: 8px 8px 0 -6px currentColor;
}

.image-lightbox-zoom-controls button::after {
  content: attr(data-zoom-symbol);
  position: absolute;
  top: 8px;
  left: 17px;
  color: currentColor;
  font-size: 13px;
  line-height: 1;
}

.image-lightbox-arrow {
  position: fixed;
  right: 28px;
  z-index: 102;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.image-lightbox-arrow:hover,
.image-lightbox-close:hover,
.image-lightbox-zoom-controls button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.image-lightbox-arrow-up {
  top: calc(50% - 56px);
}

.image-lightbox-arrow-down {
  top: calc(50% + 8px);
}

.image-lightbox-hint {
  position: fixed;
  right: 22px;
  top: calc(50% + 66px);
  z-index: 102;
  width: 72px;
  color: rgba(255, 254, 253, 0.58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.image-lightbox-thumbs {
  position: fixed;
  top: 24px;
  bottom: 24px;
  left: 22px;
  z-index: 102;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 128px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 18px 8px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 254, 253, 0.34) rgba(255, 254, 253, 0.08);
}

.image-lightbox-thumbs::-webkit-scrollbar {
  width: 6px;
}

.image-lightbox-thumbs::-webkit-scrollbar-track {
  background: rgba(255, 254, 253, 0.06);
  border-radius: 999px;
}

.image-lightbox-thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 254, 253, 0.28);
  border-radius: 999px;
}

.image-lightbox-thumbs button {
  position: relative;
  flex: 0 0 76px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 76px;
  padding: 4px;
  border: 1px solid rgba(255, 254, 253, 0.16);
  border-radius: 6px;
  background: rgba(255, 254, 253, 0.045);
  cursor: pointer;
  opacity: 0.62;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.image-lightbox-thumbs button.is-active {
  border-color: rgba(255, 254, 253, 0.74);
  background: rgba(255, 254, 253, 0.14);
  opacity: 1;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.26),
    0 0 0 2px rgba(183, 137, 67, 0.58);
}

.image-lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-lightbox-thumbs span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: var(--white);
  background: rgba(18, 59, 53, 0.9);
  border: 1px solid rgba(255, 254, 253, 0.58);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 36px 48px 38px;
  background:
    radial-gradient(circle at 14% 10%, rgba(237, 217, 172, 0.08), transparent 330px),
    radial-gradient(circle at 82% 26%, rgba(255, 254, 253, 0.035), transparent 280px),
    repeating-linear-gradient(0deg, rgba(255, 254, 253, 0.018) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 5px),
    #1f2a25;
  background-size: auto, auto, auto, auto, auto;
  color: rgba(255, 254, 253, 0.72);
  border-top: 1px solid rgba(237, 217, 172, 0.18);
  box-shadow: inset 0 18px 38px rgba(0, 0, 0, 0.16);
}

.footer::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(237, 217, 172, 0.58), rgba(166, 90, 67, 0.34), transparent);
  opacity: 0.86;
}

.footer strong {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.footer span {
  display: block;
  margin-top: 3px;
  color: #f0d28e;
  font-weight: 700;
}

.footer small {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 254, 253, 0.54);
  font-size: 12px;
  line-height: 1.6;
}

.footer a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 254, 253, 0.1), rgba(255, 254, 253, 0.045)),
    rgba(255, 254, 253, 0.05);
  border: 1px solid rgba(255, 254, 253, 0.18);
  border-radius: 7px;
  box-shadow:
    inset 0 0 16px rgba(255, 254, 253, 0.035),
    0 8px 18px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease;
}

.footer a:hover {
  color: #f0d28e;
  transform: translateY(-2px);
}

@media (max-width: 1040px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .main-nav {
    flex-wrap: wrap;
  }

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

@media (max-width: 900px) {
  body {
    background: var(--canvas);
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .topbar {
    position: sticky;
    z-index: 50;
    min-height: 82px;
    flex-direction: row;
    align-items: center;
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 152px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    font-size: 28px;
    line-height: 1;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    display: none;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 82px);
    padding: 8px 0 18px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 12% 0%, rgba(255, 254, 253, 0.82), transparent 280px),
      var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(20, 32, 31, 0.12);
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav > a,
  .nav-group > .nav-parent-link {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    border: 0;
    border-bottom: 1px solid rgba(20, 32, 31, 0.08);
    border-radius: 0;
    box-shadow: none;
    font-size: 13px;
  }

  .main-nav > a:hover,
  .main-nav > a.is-active,
  .nav-group > .nav-parent-link:hover {
    background: rgba(241, 229, 205, 0.42);
    color: #8d4c38;
    box-shadow: none;
  }

  .nav-group > .nav-parent-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-group > .nav-parent-link::after {
    content: "▾";
    margin-left: 12px;
    color: var(--ochre);
    font-size: 14px;
    transition: transform 160ms ease;
  }

  .nav-group.is-open > .nav-parent-link::after {
    transform: rotate(180deg);
  }

  .nav-group.is-open > .nav-parent-link {
    background: rgba(241, 229, 205, 0.42);
    color: #8d4c38;
  }

  .nav-group::before {
    display: none !important;
  }

  .submenu-desktop {
    display: none !important;
  }

  .submenu-mobile {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(251, 247, 237, 0.72);
  }

  .nav-group.is-open .submenu-mobile {
    display: grid !important;
  }

  .nav-submenu-overview {
    display: block;
    padding: 0;
    border-top: 0;
  }

  .nav-submenu-label {
    padding: 14px 20px 8px 28px;
    border-top: 1px solid rgba(20, 32, 31, 0.14);
    background: rgba(251, 247, 237, 0.72);
    color: rgba(91, 57, 53, 0.82);
    font-size: 10.5px;
  }

  .nav-submenu-label:first-child {
    border-top: 0;
    padding-top: 10px;
  }

  .nav-submenu-overview a {
    display: block;
    padding: 12px 20px 12px 28px;
    border-bottom: 1px solid rgba(20, 32, 31, 0.06);
    color: var(--green-2);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-group-collections {
    position: relative;
  }

  .submenu-mobile a {
    padding: 11px 20px 11px 36px;
    border-bottom: 1px solid rgba(20, 32, 31, 0.05);
    color: #4f5f5b;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
  }

  .submenu-mobile a:hover,
  .submenu-mobile a.is-active {
    background: rgba(255, 254, 253, 0.72);
    color: #8d4c38;
    box-shadow: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    right: 22px;
    bottom: 24px;
    width: 124px;
  }

  .hero-content,
  .section,
  .page-hero,
  .page-layout,
  .feature-copy,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-hero::after {
    display: none;
  }

  .site-shell:has(.page-layout) .page-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 58px;
  }

  .hero-note {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: -52px 22px 34px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 23px;
  }

  .page-hero h1 {
    font-size: 25px;
  }

  .intro-grid,
  .feature-band,
  .page-layout,
  .home-split,
  .home-location-grid,
  .contact-layout,
  .fact-strip {
    grid-template-columns: 1fr;
  }

  .collections-hero,
  .history-resource-band {
    grid-template-columns: 1fr;
  }

  .collections-hero-media {
    grid-template-rows: 180px 180px;
  }

  .tile-grid,
  .collection-grid,
  .archive-grid,
  .study-card-grid,
  .study-card-grid-two,
  .collections-overview-grid,
  .collections-showcase,
  .collection-directory,
  .history-resource-cards {
    grid-template-columns: 1fr;
  }

  .collection-feature-card.large {
    grid-row: auto;
    min-height: 320px;
  }

  .collections-showcase-all {
    grid-auto-rows: auto;
  }

  .collections-showcase-all .collection-feature-card,
  .collections-showcase-all .collection-feature-card:nth-child(2),
  .collections-showcase-all .collection-feature-card:nth-child(6),
  .collections-showcase-all .collection-feature-card:nth-child(12),
  .collections-showcase-all .collection-feature-card:nth-child(1),
  .collections-showcase-all .collection-feature-card:nth-child(8),
  .collections-showcase-all .collection-feature-card:nth-child(15),
  .collections-showcase-all .collection-feature-card:nth-child(18),
  .collections-showcase-all .collection-feature-card:nth-child(7),
  .collections-showcase-all .collection-feature-card:nth-child(11),
  .collections-showcase-all .collection-feature-card:nth-child(16) {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .section-header,
  .footer,
  .catalog-callout,
  .news-list article {
    grid-template-columns: 1fr;
  }

  .home-archive-rail {
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .home-archive-card {
    flex-basis: 250px;
    min-height: 300px;
  }

  .home-archive-arrow {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }

  .home-evidence-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-evidence-card img {
    min-height: 220px;
    height: 220px;
  }

  .home-evidence-card div {
    padding: 30px 24px;
  }

  .home-evidence-card h3 {
    font-size: 25px;
  }

  .home-osm-map iframe {
    height: 320px;
  }

  .catalog-callout {
    align-items: flex-start;
  }

  .download-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-intro,
  .catalog-steps,
  .contact-intro,
  .contact-grid,
  .contact-details,
  .collections-lead,
    .collections-feature,
    .archive-feature-card,
    .photo-archive-intro,
    .photo-record,
    .study-intro {
    grid-template-columns: 1fr;
  }

  .collection-directory-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-stats {
    grid-template-columns: 1fr;
  }

  .archive-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 254, 253, 0.16);
  }

  .archive-stats div:last-child {
    border-bottom: 0;
  }

  .photo-archive-page .photo-record {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    grid-template-columns: unset;
  }

  .photo-archive-page .photo-record::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 34px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(243, 234, 217, 0.92), rgba(243, 234, 217, 0));
  }

  .photo-archive-page .photo-record.is-filtered-out {
    display: none;
  }

  .photo-archive-page .photo-side-empty {
    display: none !important;
  }

  .photo-archive-page .photo-side {
    flex: 0 0 84vw;
    width: 84vw;
    min-height: 300px;
    padding: 18px 14px;
    border-right: 1px solid rgba(96, 76, 48, 0.16);
    border-bottom: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .photo-archive-page .photo-side::before,
  .photo-archive-page .photo-side::after {
    display: none;
  }

  .photo-archive-page .photo-side img {
    max-width: calc(100% - 12px);
    max-height: min(58vh, 360px);
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 6px;
    transform: none;
  }

  .photo-archive-page .photo-side:nth-of-type(2) img {
    max-width: calc(100% - 12px);
    max-height: min(58vh, 360px);
  }

  .photo-archive-page .photo-info {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    align-self: stretch;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: visible;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }

  .photo-archive-page .photo-info h2 {
    flex: 0 0 auto;
    margin-bottom: 12px;
  }

  .photo-archive-page .photo-quick-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(96, 76, 48, 0.16);
    overflow: visible;
  }

  .photo-archive-page .photo-quick-meta div:first-child {
    display: none;
  }

  .photo-archive-page .photo-quick-meta div {
    display: grid;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .photo-archive-page .photo-info dl {
    display: grid;
    gap: 12px;
    margin: 0;
    overflow: visible;
  }

  .photo-archive-page .photo-info dl > div {
    display: grid;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .photo-archive-page .photo-info dt {
    margin-bottom: 2px;
  }

  .photo-archive-page .photo-info dd {
    line-height: 1.5;
  }

  .photo-archive-page .decade-filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 10px;
    margin-inline: -22px;
    padding: 12px 22px 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 0;
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 18px,
      #000 calc(100% - 28px),
      transparent
    );
  }

  .photo-archive-page .decade-filters::-webkit-scrollbar {
    display: none;
  }

  .photo-archive-page .decade-filters button {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0.02em;
    box-shadow: 0 1px 0 rgba(255, 254, 253, 0.65);
  }

  .photo-archive-page .photo-records {
    margin-top: 18px;
  }

  .photo-archive-page .photo-records::before {
    content: "Σύρετε οριζόντια";
    display: block;
    margin: 0 0 10px;
    color: rgba(57, 72, 69, 0.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .archive-gallery {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    grid-template-rows: 170px;
    min-height: 180px;
    overflow-x: auto;
  }

  .archive-gallery img:first-child {
    grid-row: auto;
  }

  .collection-index {
    align-items: flex-start;
    flex-direction: column;
  }

  .download-actions {
    justify-content: flex-start;
  }

  .osm-map {
    min-height: 420px;
  }

  .osm-map iframe {
    height: 360px;
  }

  .portrait-intro {
    grid-template-columns: 1fr;
  }

  .portrait-media {
    max-width: 240px;
  }

  .news-list article {
    gap: 8px;
  }

  .side-nav {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .side-nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 254, 253, 0.56);
  }

  .side-nav a:hover,
  .side-nav a.is-active {
    border-color: rgba(178, 91, 63, 0.42);
    background: var(--white);
  }

  .mobile-photo-viewer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom)
      env(safe-area-inset-left);
    background: #000;
    touch-action: none;
    overscroll-behavior: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .mobile-photo-viewer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-photo-viewer.is-closing {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-photo-viewer img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100dvh;
    object-fit: contain;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
    will-change: transform, opacity;
  }

  .mobile-photo-viewer.is-opening img {
    animation: mobile-viewer-image-in 0.5s ease forwards;
  }

  .mobile-photo-viewer.is-closing img {
    animation: mobile-viewer-image-out 0.5s ease forwards;
  }

  @keyframes mobile-viewer-image-in {
    from {
      opacity: 0;
      transform: scale(0.94);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes mobile-viewer-image-out {
    from {
      opacity: 1;
      transform: scale(1);
    }

    to {
      opacity: 0;
      transform: scale(0.94);
    }
  }

  body.mobile-photo-viewer-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .study-card,
  .study-card-wide {
    grid-template-columns: 1fr;
  }

  .study-token,
  .study-thumb {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 3 / 2;
  }

  .study-download {
    grid-column: 1;
  }

  .study-list-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

