:root {
  --bg: #100904;
  --ink: #ffedd7;
  --accent: #ffedd7;
  --surface: #382416;
  --muted: #c4c7c5;
  --line: #56605c;
  --action: #ffedd7;
  --action-ink: #101010;
  --radius: 2px;
  --button-radius: 40px;
}
@font-face {
  font-family: Display;
  src: url("fonts/archivo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Body;
  src: url("fonts/noto-sans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    18px/1.65 Body,
    Arial,
    sans-serif;
}
body,
input,
button,
textarea,
select {
  font-family: Body, Arial, sans-serif;
}
h1,
h2,
h3,
h4 {
  font-family: Display, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.1vw, 4.6rem);
  margin: 0 0 24px;
  max-width: 22ch;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 22px;
}
h3 {
  font-size: 1.5rem;
  margin: 0 0 16px;
}
p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
textarea,
select {
  font-size: 1rem;
}
button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
figcaption {
  font-size: 0.76rem;
  line-height: 1.55;
  margin-top: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
ul,
ol {
  padding-left: 1.3em;
}
li {
  margin-bottom: 10px;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 600;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 5px;
}
button {
  color: inherit;
}
input,
textarea,
select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
}
textarea {
  min-height: 160px;
  resize: vertical;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: var(--ink);
}
label {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 7px;
}
form > div {
  margin: 18px 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
.sj-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.sj-consent input {
  margin-top: 4px;
}
.sj-wrap {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}
.sj-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-200%);
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px;
}
.sj-skip:focus {
  transform: none;
}
.sj-masthead {
  border-bottom: 1px solid var(--line);
}
.sj-brand {
  font:
    600 28px/1.1 Display,
    sans-serif;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.sj-brand svg {
  width: 32px;
  height: 32px;
  flex: none;
}
.sj-navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 25px;
}
.sj-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.87rem;
}
.sj-navigation a {
  text-decoration: none;
}
.sj-navigation a[aria-current="page"] {
  text-decoration: underline;
}
.sj-navigation .sj-action {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.sj-strap {
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.sj-band {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.sj-band .sj-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sj-menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
}
.sj-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 23px;
  background: var(--action);
  color: var(--action-ink);
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
}
.sj-action:hover {
  filter: brightness(0.94);
}
.sj-textlink {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
}
.sj-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sj-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 65ch;
}
.sj-section {
  padding-block: 80px;
  border-bottom: 1px solid var(--line);
}
.sj-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
}
.sj-section-heading > p {
  max-width: 45ch;
}
.sj-hero {
  padding-block: 72px;
}
.sj-hero-copy {
  max-width: 790px;
}
.sj-hero .sj-photo {
  margin: 0;
}
.sj-photo img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
}
.sj-hero .sj-photo img {
  aspect-ratio: 16/10;
}
.sj-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.sj-hero .sj-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.hero-note ul {
  margin-bottom: 0;
}
.sj-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.sj-story {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.sj-story figure {
  margin-bottom: 26px;
}
.sj-story .sj-photo img {
  aspect-ratio: 16/10;
}
.sj-story > p {
  font-size: 1rem;
}
.sj-story h3 a {
  text-decoration: none;
}
.sj-story h3 a:hover {
  text-decoration: underline;
}
.sj-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.sj-note {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
}
.sj-note p {
  font-size: 1rem;
}
.sj-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.reading {
  max-width: 740px;
}
.sj-small {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}
.sj-notice {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.6;
}
.sj-form-panel {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sj-form-result {
  margin-top: 18px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.sj-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.sj-plan {
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: var(--radius);
  background: var(--surface);
}
.sj-plan.sj-featured {
  border: 2px solid var(--ink);
}
.sj-plan h3 {
  font-size: 1.5rem;
}
.sj-price {
  font-family: Display, sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 24px 0;
}
.sj-price small {
  font:
    400 0.9rem/1.4 Body,
    sans-serif;
  white-space: nowrap;
}
.sj-plan li {
  font-size: 0.94rem;
}
.sj-plan .sj-action {
  margin-top: 15px;
}
.sj-badge {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.sj-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  font-size: 1.12rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.5;
}
details p {
  padding-top: 15px;
  font-size: 1rem;
}
.sj-breadcrumbs {
  font-size: 0.82rem;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-block: 26px;
  margin: 0;
  list-style: none;
}
.sj-breadcrumbs li {
  margin: 0;
}
.sj-page-title {
  padding-block: 44px 60px;
}
.sj-page-title h1 {
  max-width: 25ch;
}
.sj-prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(0, 1fr);
  gap: 70px;
}
.sj-prose section {
  margin-bottom: 44px;
}
.sj-prose section:last-child {
  margin-bottom: 0;
}
.sj-prose h2 {
  font-size: 1.8rem;
}
.sj-prose p {
  max-width: 70ch;
}
.sj-toc {
  position: sticky;
  top: 30px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
}
.sj-toc ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.sj-toc li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.sj-article-photo {
  margin-bottom: 48px;
}
.sj-article-photo img {
  max-height: 560px;
}
.sj-recap {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 45px;
  background: var(--surface);
}
.sj-sources {
  margin-top: 30px;
  font-size: 0.95rem;
}
.sj-sources ul {
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.source-note {
  margin-top: 20px;
}
.sj-institution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.sj-institution section {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.sj-institution section h2 {
  font-size: 1.8rem;
}
.sj-institution section p {
  font-size: 1.05rem;
}
.sj-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.sj-credit {
  overflow-wrap: anywhere;
}
.sj-credit h2 {
  font-size: 1.4rem;
  margin-top: 24px;
}
.sj-credit p {
  font-size: 0.88rem;
}
.sj-credit img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.sj-site-footer {
  padding: 50px 0;
}
.sj-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 40px;
}
.sj-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}
.sj-footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.sj-footer-brand .sj-brand {
  margin-bottom: 20px;
}
.sj-footer-brand > p {
  max-width: 38ch;
  font-size: 0.92rem;
}
.table-scroll {
  overflow: auto;
}
.table-scroll th {
  font-size: 0.9rem;
}
.table-scroll .sj-price {
  font-size: 1.6rem;
}
.sj-plan summary {
  font-family: Display, sans-serif;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sj-plan summary .sj-price {
  margin: 0;
}
.sj-standalone-letter {
  max-width: 800px;
  margin: auto;
}
.sj-related {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.sj-plain-list {
  list-style: none;
  padding: 0;
}
.sj-plain-list li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.9rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
@media (max-width: 1000px) {
  .sj-navigation {
    gap: 12px;
    font-size: 0.8rem;
  }
  .sj-brand {
    font-size: 26px;
  }
  .sj-navrow {
    gap: 16px;
  }
  .sj-hero-layout {
    gap: 30px;
  }
  .sj-columns {
    grid-template-columns: 1fr 1fr;
  }
  .sj-prose-grid {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
  }
  .sj-plan {
    padding: 22px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .sj-wrap {
    width: calc(100% - 36px);
  }
  h1 {
    font-size: clamp(2.05rem, 8.2vw, 3.3rem);
    max-width: none;
  }
  h2 {
    font-size: 1.85rem;
  }
  h3 {
    font-size: 1.42rem;
  }
  .sj-section {
    padding-block: 46px;
  }
  .sj-hero {
    padding-block: 45px;
  }
  .sj-hero-layout,
  .sj-split,
  .sj-prose-grid,
  .sj-institution,
  .sj-credits,
  .sj-columns,
  .sj-stories,
  .sj-plans,
  .sj-faq,
  .sj-footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .sj-hero-layout,
  .sj-split {
    gap: 30px;
  }
  .sj-section-heading {
    display: block;
  }
  .sj-section-heading > p {
    margin-top: 16px;
  }
  .sj-story,
  .sj-note,
  .sj-plan,
  .sj-form-panel,
  .sj-institution section {
    padding: 23px;
  }
  .sj-lead {
    font-size: 1.09rem;
  }
  .sj-js .sj-menu-button {
    display: block;
  }
  .sj-navrow {
    flex-wrap: wrap;
    padding-block: 20px;
  }
  .sj-js .sj-navigation {
    display: none;
  }
  .sj-js .sj-navigation.sj-open {
    display: flex;
  }
  .sj-navigation {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }
  .sj-navigation a {
    padding: 12px;
    font-size: 1rem;
  }
  .sj-navigation .sj-action {
    margin-top: 12px;
  }
  .sj-strap {
    font-size: 0.7rem;
  }
  .sj-band .sj-wrap {
    flex-wrap: wrap;
    gap: 6px;
  }
  .sj-toc {
    position: static;
  }
  .sj-page-title {
    padding-block: 24px 35px;
  }
  .sj-page-title h1 {
    max-width: none;
  }
  .sj-prose-grid .sj-toc {
    order: -1;
  }
  .sj-prose h2 {
    font-size: 1.55rem;
  }
  .sj-price {
    font-size: 2.2rem;
  }
  .sj-plan summary .sj-price {
    font-size: 1.8rem;
  }
  .sj-photo img,
  .sj-hero .sj-photo img {
    aspect-ratio: 4/3;
  }
  .sj-article-photo {
    margin-bottom: 28px;
  }
  .sj-footer-grid {
    gap: 30px;
  }
  .sj-site-footer {
    padding: 38px 0;
  }
  .sj-footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  th,
  td {
    padding: 12px;
    font-size: 0.85rem;
  }
  .table-scroll table {
    min-width: 620px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.sj-hero-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}
.sj-hero h1 {
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
  text-transform: uppercase;
}
.sj-hero .sj-photo img {
  aspect-ratio: 4/5;
  max-height: 690px;
}
.sj-section {
  border-bottom-style: dashed;
}
.sj-stories {
  gap: 45px;
}
.sj-story {
  background: none;
  border: 0;
  border-top: 1px dashed var(--line);
  padding: 24px 0;
}
.sj-plans {
  display: block;
  max-width: 900px;
  margin: auto;
}
.sj-plan {
  border: 0;
  border-bottom: 1px dashed var(--ink);
  border-radius: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: none;
}
.sj-plan .sj-price {
  text-align: right;
}
.sj-plan .sj-plan-features {
  grid-column: 1/-1;
}
.sj-plan.sj-featured {
  background: #382416;
}
.sj-institution {
  display: block;
  max-width: 860px;
  margin: auto;
}
.sj-institution section {
  border: 0;
  border-bottom: 1px dashed var(--line);
  padding: 40px 0;
}
.sj-article-layout .sj-toc {
  border-style: dashed;
}
.sj-site-footer {
  border-top: 1px dashed var(--ink);
}
@media (max-width: 760px) {
  .sj-hero-copy,
  .sj-hero-layout,
  .hero-observations,
  .sj-stories,
  .sj-story,
  .sj-story:first-child,
  .sj-story:nth-child(even),
  .sj-plans,
  .sj-plan,
  .sj-plan:last-child,
  .sj-institution,
  .sj-institution section,
  .sj-prose-grid,
  .sj-footer-grid {
    display: block;
    grid-template-columns: none;
  }
  .sj-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
    max-width: none;
  }
  .sj-hero-copy h1 {
    margin-bottom: 22px;
  }
  .sj-hero .sj-photo,
  .hero-note {
    margin-top: 26px;
  }
  .hero-photo-first .sj-photo {
    margin-top: 0;
  }
  .sj-hero-copy .sj-actions {
    margin-top: 24px;
  }
  .sj-story,
  .sj-story:nth-child(even) {
    padding: 24px 0;
    margin-bottom: 30px;
  }
  .sj-story {
    padding: 24px;
  }
  .sj-story figure {
    margin: 0 0 25px;
  }
  .sj-story:nth-child(even) figure,
  .sj-story:nth-child(even) .sj-story-copy,
  .sj-story figure,
  .sj-story .sj-story-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .sj-plan,
  .sj-plan:nth-child(2),
  .sj-plan:nth-child(3),
  .sj-plan:last-child {
    width: 100%;
    margin: 0 0 22px;
    padding: 24px;
  }
  .sj-plan .sj-price,
  .sj-plan summary .sj-price {
    font-size: 2rem;
    margin: 22px 0;
    text-align: left;
  }
  .sj-plan summary {
    display: block;
  }
  .sj-institution section,
  .sj-institution section:nth-child(even) {
    width: 100%;
    margin: 0 0 22px;
    padding: 24px;
  }
  .sj-institution section h2 {
    font-size: 1.7rem;
  }
  .sj-institution section:nth-child(even) {
    padding-top: 24px;
  }
  .sj-toc ul {
    columns: 1;
  }
  .sj-prose-grid .sj-prose,
  .sj-prose-grid .sj-toc {
    grid-column: auto;
    grid-row: auto;
  }
  .sj-prose-grid .sj-toc {
    margin-bottom: 35px;
  }
  .sj-hero .sj-photo img,
  .hero-panorama .sj-photo img,
  .hero-photo-first img {
    aspect-ratio: 4/3;
    max-height: none;
  }
  .sj-footer-grid > * {
    margin-bottom: 28px;
  }
  .sj-site-footer .sj-brand {
    font-size: 28px;
  }
  .hero-observations {
    margin-top: 25px;
  }
  .hero-observations .sj-photo {
    margin-top: 24px;
  }
  .table-scroll {
    display: none;
  }
  .sj-mobile-price-list {
    display: block;
  }
  .sj-section-heading h2 {
    max-width: none;
  }
  .hero-panorama {
    margin-top: 28px;
  }
  .sj-hero .hero-note h2 {
    font-size: 1.6rem;
  }
}
@media (min-width: 761px) {
  .sj-mobile-price-list {
    display: none;
  }
}
