:root {
  --paper: #f3ead8;
  --paper-deep: #e7dcc3;
  --ink: #1c1712;
  --ink-soft: #4a4036;
  --rule: #c4b394;
  --gold: #b45309;
  --gold-hover: #e0893a;
  --focus: #9a3412;
  --serif: "Source Serif 4", ui-serif, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #fff6e6 0%, transparent 58%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

.masthead {
  display: grid;
  gap: 0.75rem;
}

.kicker {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.75rem, 9vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-align: center;
}

.masthead .domains {
  margin-top: 0.5rem;
}

.card {
  width: 100%;
  background: #fff;
  border: 1px solid rgb(28 23 18 / 0.06);
  border-radius: 0.75rem;
  box-shadow:
    0 1px 2px rgb(28 23 18 / 0.06),
    0 8px 18px rgb(28 23 18 / 0.08),
    0 22px 40px rgb(28 23 18 / 0.1);
}

.statement {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
}

.statement p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.6;
}

.evidence {
  display: grid;
  gap: 1rem;
}

.evidence figure {
  margin: 0;
}

.evidence-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.evidence-open img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid var(--rule);
}

.lightbox {
  width: min(96vw, 1400px);
  max-width: 96vw;
  max-height: 96dvh;
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgb(28 23 18 / 0.88);
}

.lightbox img {
  display: block;
  width: auto;
  max-width: min(96vw, 1400px);
  max-height: 92dvh;
  height: auto;
  margin: 2.75rem auto 1rem;
  background: #fff;
  cursor: zoom-in;
}

.lightbox img.is-zoomed {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
}

.lightbox-close {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.domains {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1.5rem 1.35rem;
  list-style: none;
  text-align: center;
}

.domains a {
  display: block;
  padding: 0.15rem 0.25rem;
  color: var(--gold);
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.domains a:hover,
.domains a:focus-visible {
  color: var(--gold-hover);
}

.domains a:focus-visible,
.evidence-open:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .page {
    gap: 2.25rem;
    padding: 4.5rem 2rem 5rem;
  }

  .statement,
  .domains {
    padding: 1.85rem 1.75rem;
  }

  .evidence {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.25rem;
  }
}
