:root {
  --paper: #eee8dc;
  --paper-light: #f8f3e9;
  --paper-deep: #dfd5c3;
  --ink: #171310;
  --ink-soft: #5e554c;
  --vermilion: #a92b23;
  --vermilion-dark: #7d1f1a;
  --rule: rgba(23, 19, 16, 0.28);
  --confirmed: #264f43;
  --unknown: #8b5427;
  --display: "Iowan Old Style", Baskerville, "Palatino Linotype", Palatino, serif;
  --body: "Avenir Next", Avenir, Optima, "Gill Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(23, 19, 16, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(23, 19, 16, 0.02) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--vermilion-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  box-shadow: 0 0 0 7px var(--vermilion);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: -999px;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper-light);
  font-weight: 800;
}

.skip-link:focus {
  left: 0.75rem;
}

.page-width {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.offline-banner {
  padding: 0.55rem 1rem;
  background: var(--vermilion-dark);
  color: white;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.24);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  position: relative;
  display: inline-grid;
  min-height: 44px;
  align-content: center;
  justify-items: start;
  color: var(--paper-light);
  text-decoration: none;
}

.brand:hover {
  color: var(--paper-light);
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-lockup i {
  position: relative;
  display: inline-block;
  width: 4px;
  height: 2.35rem;
  margin-inline: 0.48rem;
  background: var(--vermilion);
  transform: skew(-18deg) rotate(7deg);
}

.brand-lockup i::after {
  position: absolute;
  top: 0.18rem;
  left: 0.48rem;
  width: 1px;
  height: 1.85rem;
  background: #f38d80;
  content: "";
  opacity: 0.72;
}

.brand-lockup small {
  margin-left: 0.45rem;
  color: #aaa198;
  font-family: var(--body);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.brand-disclosure {
  position: static;
  margin-top: 0.18rem;
  color: #c8beb5;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border-bottom: 3px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  color: #b7afa6;
}

.nav-links a[aria-current="page"] {
  border-color: var(--vermilion);
  color: var(--paper-light);
}

.language-switcher {
  position: relative;
  color: var(--paper-light);
}

.language-switcher summary {
  display: grid;
  min-width: 9.5rem;
  min-height: 48px;
  align-content: center;
  padding: 0.42rem 2.15rem 0.42rem 0.75rem;
  border: 1px solid rgba(248, 243, 233, 0.42);
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  position: absolute;
  top: 50%;
  right: 0.75rem;
  content: "▾";
  color: #f38d80;
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.language-switcher[open] summary::after {
  content: "▴";
}

.language-switcher summary span {
  color: #aaa198;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.language-switcher summary strong {
  margin-top: 0.12rem;
  font-size: 0.78rem;
  line-height: 1.2;
}

.language-switcher ul {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.45rem);
  right: 0;
  width: min(18rem, calc(100vw - 1.5rem));
  margin: 0;
  padding: 0.35rem;
  border: 1px solid rgba(248, 243, 233, 0.3);
  background: #11100f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  list-style: none;
}

.language-switcher li + li {
  border-top: 1px solid rgba(248, 243, 233, 0.12);
}

.language-switcher a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0.65rem;
  color: #d9d1c8;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: rgba(169, 43, 35, 0.24);
  color: var(--paper-light);
}

.language-switcher a[aria-current="page"] {
  border-left: 3px solid var(--vermilion);
}

.language-switcher a small {
  color: #f2a198;
  font-size: 0.64rem;
  font-weight: 800;
}

.lang-zh-cn .nav-links a,
.lang-es .nav-links a,
.lang-ru .nav-links a,
.lang-pl .nav-links a,
.lang-pt-br .nav-links a {
  letter-spacing: 0.01em;
  text-transform: none;
}

.lang-ru h1,
.lang-pl h1,
.lang-pt-br h1 {
  max-width: 15ch;
}

.hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: #090909;
  color: var(--paper-light);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.78) 40%, rgba(5, 5, 5, 0.24) 69%, rgba(5, 5, 5, 0.08) 100%),
    linear-gradient(0deg, #090909 0%, transparent 22%, transparent 78%, rgba(9, 9, 9, 0.6) 100%);
  content: "";
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.release-page .hero-art img {
  filter: brightness(1.24) contrast(1.08) saturate(0.78);
  object-position: 68% center;
}

.price-page .hero-art img {
  filter: brightness(1.08) contrast(1.04) saturate(0.86);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 2px solid rgba(248, 243, 233, 0.78);
  padding-top: 1rem;
}

.hero-state {
  display: grid;
  flex: none;
  gap: 0.55rem;
  justify-items: end;
}

.hero-key-answer {
  display: grid;
  gap: 0.05rem;
  text-align: right;
}

.hero-key-answer small {
  color: #c8beb5;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-key-answer strong {
  color: var(--paper-light);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--vermilion-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-pill {
  flex: none;
  padding: 0.38rem 0.62rem;
  background: var(--vermilion);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 11.5ch;
  margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.6rem, 3vw, 2.4rem);
  font-size: clamp(3.5rem, 7.2vw, 6.4rem);
  line-height: 0.93;
}

.hero h1 {
  color: var(--paper-light);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.42);
}

h2 {
  max-width: 20ch;
  margin: 0.55rem 0 1.3rem;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
}

h3 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.direct-answer {
  position: relative;
  border-left: 8px solid var(--vermilion);
  padding: clamp(1.2rem, 2.4vw, 2rem);
  background: rgba(14, 13, 12, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.answer-copy {
  max-width: 35ch;
  margin: 0.65rem 0 1.35rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  line-height: 1.24;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1rem;
  border: 2px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border-color: var(--paper-light);
  background: var(--paper-light);
  color: var(--ink);
}

.button.primary:hover {
  border-color: var(--vermilion-dark);
  background: var(--vermilion-dark);
  color: white;
}

.button.secondary {
  border-color: rgba(248, 243, 233, 0.72);
  background: transparent;
  color: var(--paper-light);
}

.quick-facts {
  border-top: 4px solid var(--vermilion);
  padding-top: 1rem;
}

.quick-facts dl {
  margin: 0.75rem 0 0;
}

.quick-facts dl > div {
  padding: 0.68rem 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.22);
}

.quick-facts dt {
  color: #aaa198;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.15rem 0 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.quick-facts small,
.store-card small,
.source-table small {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero .quick-facts small {
  color: #aaa198;
}

.art-credit {
  margin: 0.95rem 0 0;
  color: #b7afa6;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-stack {
  padding-bottom: 4rem;
}

.content-section {
  padding-block: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--ink);
}

.section-intro,
.content-section > p:not(.section-label) {
  max-width: 66ch;
  font-size: 1.08rem;
}

.table-scroll {
  margin-top: 2.2rem;
  overflow-x: auto;
  border-block: 2px solid var(--ink);
  background: rgba(248, 243, 233, 0.45);
  scrollbar-color: var(--vermilion) var(--paper-deep);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--ink);
  color: var(--paper-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody th {
  width: 26%;
  font-weight: 800;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

.decision-panel,
.split-panel,
.source-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.date-stamp {
  display: grid;
  min-height: 240px;
  align-content: center;
  border: 2px solid var(--ink);
  background: var(--vermilion);
  color: white;
  text-align: center;
  transform: rotate(1deg);
}

.date-stamp span,
.date-stamp b {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.date-stamp strong {
  font-family: var(--display);
  font-size: clamp(6rem, 11vw, 8rem);
  line-height: 0.78;
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.boundary-card {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 2px solid var(--ink);
  background: color-mix(in srgb, var(--paper-light) 76%, transparent);
}

.boundary-card.confirmed {
  border-top: 7px solid var(--confirmed);
}

.boundary-card.unknown {
  border-top: 7px solid var(--unknown);
}

.boundary-card ul,
.review-rule ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.boundary-card li,
.review-rule li {
  margin: 0.65rem 0;
}

.unknown-callout {
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 10px 10px 0 var(--paper-deep);
}

.secondary-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.compact-note,
.secondary-notes .unknown-callout {
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  border: 1px solid var(--ink);
  background: rgba(248, 243, 233, 0.72);
}

.compact-note {
  border-top: 5px solid var(--vermilion);
}

.secondary-notes .unknown-callout {
  box-shadow: none;
}

.update-policy {
  margin-top: 1.25rem;
  border: 1px solid var(--ink);
  background: rgba(248, 243, 233, 0.54);
}

.update-policy summary {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 0.9rem 3.25rem 0.9rem 1rem;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.update-policy summary::-webkit-details-marker {
  display: none;
}

.update-policy summary::after {
  position: absolute;
  right: 1rem;
  content: "+";
  color: var(--vermilion);
  font-size: 1.5rem;
  line-height: 1;
}

.update-policy[open] summary::after {
  content: "−";
}

.update-policy-body {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  padding: 1.15rem;
  border-top: 1px solid var(--rule);
}

.update-policy-body p,
.update-policy-body ul {
  margin-block: 0;
}

.update-policy-body ul {
  padding-left: 1.2rem;
}

.unknown-callout {
  border-top: 7px solid var(--unknown);
}

.faq-list {
  max-width: 880px;
  margin-top: 1.5rem;
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  min-height: 56px;
  padding: 1rem 3rem 1rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  content: "+";
  color: var(--vermilion);
  font-family: var(--body);
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 66ch;
  margin: 0;
  padding: 0 3rem 1.4rem 0;
}

.next-step {
  margin-top: 1.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--paper-light);
}

.next-step h2 {
  max-width: 16ch;
}

.next-step .section-label {
  color: #f38d80;
}

.text-link {
  display: inline-block;
  font-weight: 900;
  text-decoration-color: var(--vermilion);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.store-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-top: 5px solid var(--ink);
  background: rgba(248, 243, 233, 0.65);
}

.store-card:nth-child(2n) {
  border-color: var(--vermilion);
}

.store-card .text-link {
  margin-top: auto;
}

.store-card small {
  margin-top: 0.8rem;
}

.numbered-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: buy-check;
  list-style: none;
}

.numbered-checklist li {
  min-height: 118px;
  padding: 1.4rem;
  border: 1px solid var(--ink);
  background: rgba(248, 243, 233, 0.45);
  counter-increment: buy-check;
}

.numbered-checklist li::before {
  display: block;
  margin-bottom: 1rem;
  content: "0" counter(buy-check);
  color: var(--vermilion);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.site-footer {
  margin-top: 2.5rem;
  padding-block: 2.5rem;
  border-top: 4px solid var(--ink);
  background: var(--paper-deep);
  font-size: 0.86rem;
}

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

.footer-grid p {
  max-width: 54ch;
  margin: 0.35rem 0;
}

.recovery-main {
  min-height: calc(100vh - 75px);
  padding-block: clamp(5rem, 12vw, 10rem);
}

.recovery-main h1 {
  max-width: 11ch;
}

.recovery-main .answer-copy {
  max-width: 42ch;
}

.recovery-main .button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-light);
}

.recovery-main .button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 900px) {
  .site-nav {
    gap: 0.75rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .nav-links a {
    padding-inline: 0.48rem;
  }

  .language-switcher summary {
    min-width: 8.2rem;
  }

  .hero-art img {
    object-position: 76% center;
  }

  .hero-grid,
  .decision-panel,
  .split-panel,
  .source-ledger {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 1rem;
  }

  .date-stamp {
    min-height: 220px;
  }

  .hero {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .page-width {
    width: min(100% - 1.4rem, 1180px);
  }

  .site-nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
    padding-block: 0.5rem;
  }

  .brand {
    min-height: 44px;
  }

  .brand-lockup {
    font-size: 1.15rem;
  }

  .brand-lockup i {
    height: 1.55rem;
    margin-inline: 0.38rem;
  }

  .brand-disclosure {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .nav-links {
    width: 100%;
  }

  .nav-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(8.5rem, 0.42fr);
  }

  .nav-links a {
    flex: 1;
    min-height: 44px;
    padding: 0.45rem 0.2rem;
    text-align: center;
  }

  .language-switcher,
  .language-switcher summary {
    width: 100%;
  }

  .language-switcher summary {
    min-height: 44px;
  }

  .language-switcher ul {
    top: calc(100% + 0.25rem);
    right: 0;
  }

  .hero-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-state {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
  }

  .hero-key-answer {
    text-align: right;
  }

  .hero {
    min-height: auto;
    padding-top: 13.5rem;
    padding-bottom: 3rem;
  }

  .hero::after {
    background:
      linear-gradient(0deg, #090909 0%, #090909 42%, rgba(9, 9, 9, 0.48) 72%, rgba(9, 9, 9, 0.12) 100%),
      linear-gradient(90deg, rgba(9, 9, 9, 0.62), transparent 70%);
  }

  .hero-art {
    height: 15rem;
    bottom: auto;
  }

  .hero-art img {
    object-position: 74% center;
  }

  h1 {
    margin: 1rem 0 1.5rem;
    font-size: clamp(2.9rem, 14vw, 4rem);
  }

  .direct-answer {
    border-left-width: 6px;
    padding: 1.2rem;
  }

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

  .boundary-grid,
  .store-grid,
  .numbered-checklist,
  .footer-grid,
  .secondary-notes,
  .update-policy-body {
    grid-template-columns: 1fr;
  }

  .store-card,
  .numbered-checklist li {
    min-height: auto;
  }

  th,
  td {
    padding: 0.8rem;
  }

  .content-section {
    padding-block: 2.75rem;
  }

  .table-scroll {
    overflow: visible;
    border-block: 0;
    background: transparent;
  }

  table {
    min-width: 0;
  }

  thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  tbody,
  tr,
  tbody th,
  tbody td {
    display: block;
    width: 100%;
  }

  tbody tr {
    margin-bottom: 0.85rem;
    border: 1px solid var(--ink);
    background: rgba(248, 243, 233, 0.68);
  }

  tbody th {
    border-bottom: 1px solid var(--ink);
    font-size: 1.05rem;
  }

  tbody td {
    display: grid;
    grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  tbody td::before {
    content: attr(data-label);
    color: var(--vermilion-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .date-stamp {
    min-height: 180px;
  }

  .numbered-checklist li {
    min-height: auto;
  }

  .art-credit {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .faq-list summary {
    padding-right: 2.4rem;
    font-size: 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .offline-banner,
  .language-switcher,
  .action-row,
  .site-footer {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero,
  .content-section {
    padding-block: 1.5rem;
  }
}
