:root {
  --bg: #050505;
  --panel: rgba(20, 14, 14, 0.42);
  --panel-soft: rgba(20, 14, 14, 0.30);
  --panel-faint: rgba(16, 12, 12, 0.26);

  --text: #e8e0d2;
  --text-soft: #d7cdc0;
  --text-muted: #a89b8a;
  --text-faint: #857968;
  --text-link: #c9b9a0;

  --red: #8d1d1d;
  --red-soft: rgba(181, 26, 26, 0.16);
  --red-border: rgba(181, 26, 26, 0.40);
  --red-border-strong: rgba(181, 26, 26, 0.65);
  --red-line: rgba(181, 26, 26, 0.28);

  --max-wide: 1200px;
  --max-page: 980px;
  --max-reading: 720px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  overflow-x: hidden;
  line-height: 1.8;
  transition: filter 1.4s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120, 0, 0, 0.10), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

h1,
h2,
h3,
h4,
.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  color: var(--text);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.35;
}

.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
}

.page-subtitle,
.hero-subtitle,
.threshold-subtitle,
.small-note,
.small-label {
  margin: 14px 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.page-intro,
.lead {
  max-width: var(--max-reading);
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-soft);
}

.hero-anchor,
.threshold-hook {
  margin: 34px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.65;
  color: #ece3d6;
  max-width: 840px;
  text-align: center;
}

/* =========================
   PAGE TRANSITION
========================= */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.55s ease;
  will-change: opacity;
}

.page-transition.is-active {
  opacity: 1;
}

html.page-enter .page-transition {
  opacity: 1;
}

.sigil-enter-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1.4s ease;
}

.sigil-enter-overlay.is-fading {
  opacity: 0;
}

.sigil-enter-mark {
  width: 250px;
  max-width: 54vw;
  opacity: 0.96;
  transform: scale(1);
  filter: drop-shadow(0 0 18px rgba(180, 0, 0, 0.24));
  transition: opacity 1.25s ease, transform 1.25s ease;
}

.sigil-enter-overlay.is-fading .sigil-enter-mark {
  opacity: 0;
  transform: scale(0.99);
}

.preview-container {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 1;
  transition: opacity 2s ease;
}

.preview-container.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preview-sigil {
  width: 280px;
  max-width: 55vw;
  opacity: 0.95;
  filter: drop-shadow(0 0 16px rgba(180, 0, 0, 0.22));
}

.fade-page {
  animation: fadeIn 1.1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================
   GLOBAL LAYOUT
========================= */

.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.page-shell {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 56px 24px 88px;
}

.wrap {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px 88px;
}

.narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.reading-width,
.reading-width-tight {
  width: 100%;
  max-width: var(--max-reading);
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.section {
  padding: 56px 0;
}

.divider {
  width: 120px;
  height: 1px;
  background: var(--red-line);
  margin: 30px auto;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(181, 26, 26, 0.16);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(4px);
}

.site-header-inner {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-text span {
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav > a,
.nav-dropdown-toggle {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-link);
  transition: color 0.25s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a[aria-current="page"] {
  color: var(--text);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: inherit;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.is-current .nav-dropdown-toggle {
  color: var(--text);
  outline: none;
}

.nav-arrow {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  color: var(--text-muted);
  transform: translateY(-1px);
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-dropdown-toggle:hover .nav-arrow,
.nav-dropdown-toggle:focus-visible .nav-arrow,
.nav-dropdown.is-current .nav-arrow,
.nav-dropdown.is-open .nav-arrow {
  color: var(--text);
}

.nav-dropdown.is-open .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(181, 26, 26, 0.16);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(4px);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 25;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.45;
  border: 1px solid transparent;
  background: rgba(181, 26, 26, 0.02);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--text);
  background: rgba(181, 26, 26, 0.08);
  border-color: rgba(181, 26, 26, 0.22);
  outline: none;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: flex;
}

@media (min-width: 981px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
  }
}

/* =========================
   BUTTONS
========================= */

.button-row,
.nav-row {
  margin-top: 36px;
}

.button,
.nav-row a,
.form-submit {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8cec0;
  border: 1px solid var(--red-border);
  padding: 13px 28px;
  min-width: 160px;
  background: rgba(181, 26, 26, 0.05);
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: inherit;
}

.button:hover,
.button:focus-visible,
.nav-row a:hover,
.nav-row a:focus-visible,
.form-submit:hover,
.form-submit:focus-visible {
  color: #f0e8da;
  background: rgba(181, 26, 26, 0.12);
  border-color: var(--red-border-strong);
  outline: none;
}

/* =========================
   THRESHOLD
========================= */

.threshold {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.threshold-content {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.threshold-red-sigil {
  display: block;
  width: 180px;
  max-width: 48vw;
  margin: 0 auto 36px;
  filter: drop-shadow(0 0 14px rgba(180, 0, 0, 0.18));
}

.threshold-title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.threshold-kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  font-weight: normal;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #cfc6b8;
  margin-bottom: 18px;
  line-height: 1;
  text-align: center;
}

.threshold-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6.4vw, 4.7rem);
  font-weight: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  text-align: center;
}

/* =========================
   PAGE HERO / SHARED VISUALS
========================= */

.page-watermark {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 88vw;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.page-hero {
  text-align: center;
  padding: 20px 0 18px;
}

.page-hero-mark {
  display: block;
  width: 160px;
  max-width: 40vw;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 12px rgba(180, 0, 0, 0.16));
}

.site-footer {
  border-top: 1px solid rgba(181, 26, 26, 0.14);
  text-align: center;
  padding: 24px 20px 36px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-closing {
  margin: 40px 0 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =========================
   HOME
========================= */

.pathways {
  width: 100%;
  max-width: 1040px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.path-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 170px;
  text-decoration: none;
  border: 1px solid var(--red-soft);
  background: rgba(20, 14, 14, 0.34);
  padding: 24px 22px;
  transition: all 0.25s ease;
  color: inherit;
}

.path-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.path-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.path-card:hover,
.path-card:focus-visible {
  border-color: rgba(181, 26, 26, 0.4);
  background: rgba(20, 14, 14, 0.48);
  transform: translateY(-1px);
  outline: none;
}

.path-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.path-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* =========================
   CONTENT PAGES / TOC
========================= */

.content-layout {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.toc-panel {
  min-width: 0;
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 3;
}

.toc-sticky {
  position: relative;
  height: fit-content;
  padding: 22px 20px;
  border: 1px solid rgba(181, 26, 26, 0.14);
  background: rgba(16, 12, 12, 0.34);
}

.depth-framework .toc-sticky,
.depth-expanded .toc-sticky {
  height: fit-content;
  max-height: none;
  overflow: visible;
}

.depth-application .toc-sticky {
  max-height: calc(100vh - 116px);
  overflow-y: auto;
}

.depth-application .toc-sticky::-webkit-scrollbar {
  width: 8px;
}

.depth-application .toc-sticky::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.depth-application .toc-sticky::-webkit-scrollbar-thumb {
  background: rgba(181, 26, 26, 0.24);
}

.toc-label {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #bfae9d;
}

.toc-label::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 14px;
  background: rgba(181, 26, 26, 0.22);
}

.toc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.toc a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  color: #d7cdc0;
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.45;
  border: 1px solid transparent;
  background: rgba(181, 26, 26, 0.02);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.toc a:hover,
.toc a:focus-visible {
  color: #f0e8da;
  background: rgba(181, 26, 26, 0.08);
  border-color: rgba(181, 26, 26, 0.22);
  transform: translateX(2px);
  outline: none;
}

.toc a.is-active {
  color: #f0e8da;
  background: rgba(181, 26, 26, 0.12);
  border-color: rgba(181, 26, 26, 0.30);
  box-shadow: inset 2px 0 0 rgba(181, 26, 26, 0.55);
}

.reading-panel {
  min-width: 0;
  max-width: 760px;
}

.reading-panel section {
  padding: 28px 26px;
  margin-bottom: 22px;
  border: 1px solid var(--red-soft);
  background: var(--panel);
  scroll-margin-top: 110px;
}

.reading-panel section:last-child {
  margin-bottom: 0;
}

.section-kicker,
.application-number,
.principle-label,
.saying-index {
  display: none;
}

.section-title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--text);
}

.application-list {
  margin: 0 0 22px 1.2rem;
  padding: 0;
  color: var(--text-soft);
}

.application-list li {
  margin: 0 0 10px;
  line-height: 1.75;
}

/* =========================
   CARDS / LONGFORM
========================= */

.card,
.principle-card,
.saying-card,
.longform-card,
.form-card {
  border: 1px solid var(--red-soft);
  background: var(--panel);
  padding: 28px 26px;
}

.card p:last-child,
.longform-card p:last-child,
.form-card p:last-child {
  margin-bottom: 0;
}

.principles-list,
.sayings-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.principles-list {
  gap: 18px;
}

.sayings-list {
  gap: 22px;
}

.principle-card,
.saying-card {
  text-align: left;
}

.principle-line {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--text);
}

.principle-support {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.saying-card {
  border: 1px solid rgba(181, 26, 26, 0.14);
  background: rgba(16, 12, 12, 0.28);
}

.saying-text {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.55;
  color: var(--text);
  text-align: left;
}

.longform-shell {
  max-width: 860px;
  margin: 0 auto;
}

.longform-card {
  max-width: 760px;
  margin: 0 auto;
}

.longform-title {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.25;
  color: var(--text);
}

.longform-card p {
  font-size: 1rem;
  line-height: 1.9;
}

/* =========================
   INQUIRY FORM
========================= */

.form-shell {
  max-width: 760px;
  margin: 0 auto;
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-form {
  display: grid;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.form-helper {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(181, 26, 26, 0.20);
  background: rgba(16, 12, 12, 0.30);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(215, 205, 192, 0.42);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(181, 26, 26, 0.45);
  background: rgba(20, 14, 14, 0.44);
  box-shadow: 0 0 0 1px rgba(181, 26, 26, 0.18);
}

.inquiry-form textarea {
  min-height: 220px;
  resize: vertical;
}

.turnstile-wrap {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.form-status {
  min-height: 24px;
  margin-top: 2px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.form-status.is-success {
  color: #d8cec0;
}

.form-status.is-error {
  color: #d5b7b7;
}

.form-status.is-pending {
  color: var(--text-muted);
}

.form-note {
  margin-top: 18px;
  text-align: center;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================
   GRIDS
========================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 1100px) {
  .pathways {
    max-width: 820px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .path-card {
    grid-column: span 2;
  }

  .path-card:nth-child(4) {
    grid-column: auto;
  }

  .path-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 980px) {
  .site-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    box-shadow: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .toc-panel {
    position: static;
    top: auto;
  }

  .toc-sticky,
  .depth-framework .toc-sticky,
  .depth-expanded .toc-sticky,
  .depth-application .toc-sticky {
    height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 700px) {
  .preview-sigil {
    width: 220px;
    max-width: 60vw;
  }

  .sigil-enter-mark {
    width: 210px;
    max-width: 60vw;
  }

  .threshold-red-sigil {
    width: 150px;
    max-width: 52vw;
  }

  .threshold-kicker {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    letter-spacing: 0.30em;
    margin-bottom: 12px;
  }

  .threshold-title {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
    letter-spacing: 0.05em;
    line-height: 1.04;
  }

  .threshold-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  .threshold-hook {
    font-size: 1.12rem;
    line-height: 1.55;
    max-width: 92%;
  }

  .page-watermark {
    width: 520px;
    max-width: 110vw;
    top: 110px;
  }

  .page-shell {
    padding: 44px 18px 72px;
  }

  .page-hero-mark {
    width: 132px;
    max-width: 46vw;
  }

  .pathways {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .path-card,
  .path-card:nth-child(4),
  .path-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .path-card,
  .card,
  .toc-sticky,
  .reading-panel section,
  .principle-card,
  .saying-card,
  .longform-card,
  .form-card {
    padding: 22px 18px;
  }

  .saying-text {
    font-size: 1.22rem;
    line-height: 1.5;
  }

  .site-footer,
  .home-closing,
  .form-note {
    font-size: 10px;
    letter-spacing: 0.14em;
    padding-left: 10px;
    padding-right: 10px;
  }

  .turnstile-wrap {
    justify-content: center;
  }
}