:root {
  --paper: #fbfaf6;
  --paper-deep: #f3efe5;
  --ink: #16201b;
  --muted: #66736a;
  --green: #315c43;
  --green-soft: #e5eee8;
  --gold: #b99143;
  --gold-soft: #ead9b4;
  --line: #ddd6c7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(234, 217, 180, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff 0%, var(--paper) 42%, #f7f4ed 100%);
  color: var(--ink);
  font-family:
    ui-serif, "Noto Serif TC", "Source Han Serif TC", "Songti TC",
    "Times New Roman", serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(11rem, 1fr) auto minmax(5rem, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 1.2rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(185, 145, 67, 0.2);
  background: rgba(251, 250, 246, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand span {
  font-weight: 650;
}

.brand small {
  color: var(--muted);
  font-size: 0.86rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.95rem;
  color: #303b35;
}

nav a {
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-color: var(--gold);
}

.nav-toggle,
.menu-button {
  display: none;
}

.menu-button {
  justify-self: end;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.55rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(49, 92, 67, 0.28);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.88rem;
  font-weight: 750;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -0.36rem;
}

.menu-button span::after {
  top: 0.36rem;
}

.lang-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.9rem;
}

.lang-switch a {
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}

.lang-switch a:hover {
  color: var(--green);
  border-color: var(--gold);
}

.lang-switch a.active {
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 750;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  min-height: calc(100vh - 4.5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.binding-line {
  position: absolute;
  inset: 0 auto 0 clamp(1.5rem, 3vw, 2.5rem);
  width: 1px;
  background: linear-gradient(var(--gold), transparent 20%, transparent 76%, var(--gold));
}

.binding-line::before {
  content: "";
  position: absolute;
  top: 6rem;
  left: -0.45rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--paper);
}

.hero-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 7vw, 8rem);
  padding-left: clamp(3rem, 9vw, 9rem);
  padding-right: clamp(1.25rem, 4vw, 4rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 50rem;
  font-size: clamp(3.6rem, 6vw, 5.45rem);
  font-weight: 520;
  line-height: 0.96;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  white-space: nowrap;
}

.hero h1 strong {
  margin-top: 0.5rem;
  color: #1f2b24;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 520;
}

.hero-subtitle {
  margin: 1.5rem 0 0;
  color: var(--green);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.hero-lede {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.45rem;
  border: 1px solid var(--green);
  border-radius: 3px;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 650;
}

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

.button.secondary {
  color: var(--green);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.6rem;
  padding: 0.58rem 1rem;
  border-radius: 999px;
  background: rgba(49, 92, 67, 0.1);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 650;
}

.status-pill span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: #8fb09b;
}

.manuscript-panel {
  position: relative;
  min-height: 36rem;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.18) 30%, rgba(251, 250, 246, 0) 60%),
    #fbfaf6;
  overflow: hidden;
}

.manuscript-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #fbfaf6 0%, rgba(251, 250, 246, 0.62) 13%, rgba(251, 250, 246, 0.1) 36%, rgba(251, 250, 246, 0) 60%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.38) 0%, rgba(251, 250, 246, 0) 15%, rgba(251, 250, 246, 0) 82%, rgba(251, 250, 246, 0.38) 100%);
  pointer-events: none;
}

.manuscript-panel::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 80% 44%, transparent 0 16rem, rgba(251, 250, 246, 0.04) 25rem);
  pointer-events: none;
}

.manuscript-image {
  position: absolute;
  z-index: 1;
  inset: 0 -12% 0 -5%;
  background-image: url("images/hero-manuscript-collage.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  filter: saturate(0.96) contrast(1.08);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.facts article {
  padding: 1.6rem clamp(1.4rem, 4vw, 5rem);
  border-right: 1px solid var(--line);
}

.facts article:last-child {
  border-right: 0;
}

.facts p,
.facts span {
  margin: 0;
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.facts strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.55rem;
  font-weight: 560;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.section h2 {
  max-width: 52rem;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 520;
  line-height: 1.08;
}

.section p {
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.85;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 28rem);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.profile-card {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1.5rem 4rem rgba(49, 39, 20, 0.08);
}

.profile-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-card p,
.profile-card span {
  margin: 0;
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
}

.profile-card strong {
  display: block;
  margin: 0.2rem 0 0.35rem;
  font-size: 1.25rem;
}

.profile-name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--ink);
  text-decoration-line: underline;
  text-decoration-color: rgba(185, 145, 67, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.profile-name-link::after {
  content: "↗";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid rgba(185, 145, 67, 0.55);
  border-radius: 999px;
  background: rgba(229, 238, 232, 0.7);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.68rem;
  line-height: 1;
  transform: translateY(-0.06rem);
}

.profile-name-link:hover {
  color: var(--green);
  text-decoration-color: var(--gold);
}

.profile-name-link:hover::after {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  background: linear-gradient(180deg, rgba(229, 238, 232, 0.42), rgba(255, 255, 255, 0.3));
}

.criteria-list {
  display: grid;
  gap: 0.75rem;
}

.criteria-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  margin-bottom: 0.25rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.criteria-list article {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(49, 92, 67, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.criteria-list span {
  color: var(--gold);
  font-size: 1.45rem;
}

.criteria-list p {
  margin: 0;
  color: var(--ink);
}

.process-section {
  display: block;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 246, 0.92)),
    var(--paper);
}

.process-heading {
  max-width: 66rem;
  margin-bottom: 2rem;
}

.timeline-label {
  display: inline-flex;
  align-items: center;
  margin: 1.55rem 0 0.65rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--gold);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process-notes-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--green);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.process-doc-link {
  display: table;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid rgba(185, 145, 67, 0.38);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.process-doc-link::after {
  content: "↗";
  margin-left: 0.5rem;
  color: var(--gold);
}

.process-doc-link:hover {
  border-color: var(--gold);
  background: var(--white);
}

.timeline-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 1rem;
  border: 1px solid rgba(185, 145, 67, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.timeline-panel article {
  min-height: 8rem;
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.timeline-panel article:last-child {
  border-right: 0;
}

.timeline-panel span {
  display: block;
  color: var(--gold);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-panel strong {
  display: block;
  margin-top: 0.75rem;
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 560;
  line-height: 1.2;
}

.process-grid {
  display: grid;
  max-width: 78rem;
  gap: 0.75rem;
}

.process-grid article {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  column-gap: 1.15rem;
  align-items: start;
  padding: 1.5rem 1.65rem;
  border: 1px solid rgba(49, 92, 67, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.process-icon {
  display: flex;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-items: flex-start;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.08rem;
}

.process-icon svg {
  width: 2.35rem;
  height: 2.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.process-grid h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  font-weight: 560;
  line-height: 1.2;
}

.process-grid p {
  grid-column: 2;
  grid-row: 2;
  margin: 0.7rem 0 0;
  max-width: 62rem;
  color: var(--muted);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.98rem;
  line-height: 1.78;
}

.current-laureate-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  border-block: 1px solid var(--line);
  background: var(--green);
}

.current-laureate-band h2,
.current-laureate-band p {
  color: var(--white);
}

.current-laureate-band .section-kicker {
  color: var(--gold-soft);
}

.current-laureate-card {
  display: grid;
  grid-template-columns: minmax(8rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(245, 236, 217, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.current-laureate-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(245, 236, 217, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.current-laureate-card h3 {
  margin: 0.2rem 0 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 560;
  line-height: 1;
}

.project-url {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.75rem;
  border-bottom: 1px solid rgba(245, 236, 217, 0.74);
  color: var(--gold-soft);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.project-url:hover {
  color: var(--white);
}

.current-laureate-card .laureates {
  color: var(--gold-soft) !important;
}

.lecture-note {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.award-label {
  margin: 0;
  color: var(--gold-soft) !important;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.award-stack {
  display: grid;
  gap: 1.2rem;
}

.award-card {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.award-year {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.award-year span {
  color: var(--green);
  font-size: 2.35rem;
}

.award-year em,
.tag-row span {
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(49, 92, 67, 0.22);
  border-radius: 999px;
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.award-content h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  font-weight: 560;
  line-height: 1.18;
}

.laureates {
  margin: 0.7rem 0 0;
  color: var(--green) !important;
  font-weight: 700;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.3rem 0 0;
}

.event-meta div {
  padding: 0.9rem;
  background: var(--paper);
  border-left: 2px solid var(--gold);
}

.event-meta dt {
  color: var(--gold);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.event-meta dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.55;
}

.link-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.link-row a {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
}

.link-row.light a {
  border-color: rgba(245, 236, 217, 0.68);
  color: var(--white);
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.photo-grid img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.photo-grid img:first-child {
  grid-row: span 2;
  height: 30.75rem;
}

.archive-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 2rem;
  background: rgba(255, 255, 255, 0.54);
  border-top: 1px solid var(--line);
}

.archive-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.archive-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
}

.archive-links span {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem clamp(1.25rem, 6vw, 6rem);
  background: #17231c;
  color: var(--white);
}

.footer-maintainer {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(245, 236, 217, 0.34);
  background: var(--white);
}

.footer-logo img {
  width: 18.5rem;
  height: auto;
  max-height: 2.8rem;
  object-fit: contain;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.site-footer strong {
  display: block;
  margin: 0.4rem 0;
  font-size: 1.1rem;
}

.site-footer strong a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(245, 236, 217, 0.52);
  text-underline-offset: 0.18em;
}

.site-footer strong a:hover {
  color: var(--gold-soft);
  text-decoration-color: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gold-soft);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero,
  .about-grid,
  .split-section,
  .current-laureate-band,
  .archive-section {
    grid-template-columns: 1fr;
  }

  .current-laureate-card {
    grid-template-columns: 1fr;
  }

  .current-laureate-card img {
    max-width: 13rem;
  }

  .timeline-panel {
    grid-template-columns: 1fr;
  }

  .timeline-panel article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-panel article:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: clamp(3rem, 8vw, 5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  .manuscript-panel {
    min-height: 22rem;
  }

  .hero h1 span,
  .hero h1 strong {
    white-space: normal;
  }

  .event-meta,
  .facts {
    grid-template-columns: 1fr;
  }

  .facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .award-card {
    grid-template-columns: 1fr;
  }

  .award-year {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .photo-grid img,
  .photo-grid img:first-child {
    height: auto;
    max-height: 25rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header nav {
    display: none;
  }

  .nav-toggle:checked ~ nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 0.2rem;
    width: 100%;
    padding: 0.65rem 0 0.15rem;
    border-top: 1px solid rgba(185, 145, 67, 0.22);
  }

  .site-header nav a {
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(49, 92, 67, 0.12);
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle:checked + .menu-button span {
    background: transparent;
  }

  .nav-toggle:checked + .menu-button span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .menu-button span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .lang-switch {
    display: none;
  }

  .nav-toggle:checked ~ .lang-switch {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: flex-start;
    gap: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(49, 92, 67, 0.12);
  }

  .nav-toggle:checked ~ .lang-switch a {
    padding: 0.4rem 0.15rem;
  }

  .hero-copy {
    padding: 2.6rem 1.1rem 3rem 2.25rem;
  }

  .hero h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero h1 strong {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .hero-actions,
  .link-row,
  .tag-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .link-row a {
    width: 100%;
  }

  .status-pill {
    align-items: flex-start;
    border-radius: 0;
    line-height: 1.45;
  }

  .section {
    padding: 3.25rem 1rem;
  }

  .section h2 {
    font-size: 2.05rem;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .criteria-list article {
    grid-template-columns: 2.6rem minmax(0, 1fr);
    padding: 1rem;
  }

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

  .process-grid article {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .process-grid h3,
  .process-icon,
  .process-grid p {
    grid-column: auto;
    grid-row: auto;
  }

  .process-icon {
    justify-content: flex-start;
    margin-top: 0.55rem;
  }

  .timeline-panel article {
    padding: 1rem;
  }

  .current-laureate-card {
    padding: 1rem;
  }

  .current-laureate-card h3 {
    font-size: 2.35rem;
  }

  .project-url {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .award-year {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-meta {
    gap: 0.55rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.25rem 1rem;
  }

  .footer-maintainer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo img {
    width: min(14rem, 72vw);
  }
}
