:root {
  --paper: #f4eadb;
  --paper-light: #fff9ef;
  --paper-bright: #fffdf8;
  --ink: #2d2117;
  --ink-soft: #5c4e3f;
  --ink-muted: #837363;
  --gold: #c9842f;
  --gold-dark: #80531f;
  --gold-soft: #f0d6ad;
  --blue: #60788c;
  --green: #778b68;
  --line: rgba(80, 58, 35, 0.16);
  --line-strong: rgba(189, 128, 46, 0.34);
  --shadow-soft: 0 18px 50px rgba(83, 56, 27, 0.1);
  --shadow: 0 26px 62px rgba(83, 56, 27, 0.16);
  --serif: "Cormorant Garamond", "Lora", Georgia, serif;
  --read: "Lora", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --article: min(740px, calc(100vw - 48px));
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 32px);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(201, 132, 47, 0.09), transparent 28rem),
    radial-gradient(circle at 92% 22%, rgba(96, 120, 140, 0.08), transparent 30rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(201, 132, 47, 0.48);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--gold-soft);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  max-width: 920px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper-bright);
  background: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.reading-progress {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #e3ad62);
  transition: width 80ms linear;
}

.site-frame {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(244, 234, 219, 0.84);
  backdrop-filter: blur(18px) saturate(120%);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 249, 239, 0.94);
  box-shadow: 0 10px 30px rgba(76, 50, 23, 0.07);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  max-width: 168px;
  height: 46px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(255, 249, 239, 0.72);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.015em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-navigation,
.primary-navigation .nav,
.nav-tools {
  display: flex;
  align-items: center;
}

.primary-navigation {
  min-width: 0;
  gap: 26px;
}

.primary-navigation .nav {
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation a,
.nav-tools button {
  position: relative;
  padding: 8px 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.primary-navigation .nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.primary-navigation .nav a:hover::after,
.primary-navigation .nav-current a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-tools {
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.search-button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 6px;
}

.search-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  cursor: pointer;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.7);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
  transform: translateY(2.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-2.25px) rotate(-45deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tag-link {
  display: inline-block;
  text-decoration: none;
}

.tag-link:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

.journal-hero {
  position: relative;
  padding: clamp(74px, 9vw, 132px) 0 clamp(84px, 10vw, 148px);
}

.journal-hero::before {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(760px, 72vw);
  height: min(760px, 72vw);
  border: 1px solid rgba(201, 132, 47, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  transform: translateX(-10%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(50px, 8vw, 112px);
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7.3vw, 102px);
}

.hero-answer {
  max-width: 730px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf3;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(45, 33, 23, 0.16);
}

.button-primary:hover {
  background: #443124;
  box-shadow: 0 16px 28px rgba(45, 33, 23, 0.2);
}

.button-quiet {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 249, 239, 0.58);
}

.button-quiet:hover {
  background: var(--paper-light);
}

.hero-note {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 10px;
  background: rgba(255, 249, 239, 0.66);
  box-shadow: var(--shadow-soft);
}

.hero-note blockquote {
  margin: 0;
  font-family: var(--read);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
}

.hero-orbit {
  position: absolute;
  top: -21px;
  right: 30px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: inset 0 0 0 10px var(--paper), inset 0 0 0 11px rgba(201, 132, 47, 0.35);
}

.article-section {
  padding: 96px 0 110px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 44px;
}

.section-heading.compact {
  display: block;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 16px;
  line-height: 1.75;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 239, 0.7);
  box-shadow: 0 14px 38px rgba(78, 51, 24, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.post-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: #eadbc7;
}

.post-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(45, 33, 23, 0.12));
  pointer-events: none;
}

.post-card-media picture,
.post-card-media img {
  width: 100%;
  height: 100%;
}

.post-card-media img {
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.post-card:hover .post-card-media img {
  transform: scale(1.035);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.post-card-title {
  margin: 0 0 14px;
  font-size: clamp(29px, 2.8vw, 38px);
  line-height: 1.08;
}

.post-card-title a {
  text-decoration: none;
}

.post-card-answer {
  display: -webkit-box;
  margin: 0 0 22px;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  margin-top: auto;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.post-meta span:not(:last-child)::after {
  margin-left: 12px;
  content: "·";
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 20px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pagination > div:last-child {
  text-align: right;
}

.pagination-link,
.pagination-status {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.pagination-link:hover {
  color: var(--gold-dark);
}

.pagination-status {
  color: var(--ink-muted);
}

.empty-state {
  padding: clamp(34px, 6vw, 70px);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.55);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

.empty-state p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--read);
}

.empty-state .text-link {
  margin-top: 24px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  display: grid;
  gap: 8px;
  padding: 32px 34px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  font-family: var(--serif);
  font-size: 24px;
}

.trust-grid span {
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 13px;
  line-height: 1.65;
}

.breadcrumbs {
  margin-bottom: 40px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(92, 78, 63, 0.38);
}

.breadcrumbs li:last-child {
  max-width: min(440px, 70vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.article-main {
  padding: 62px 0 0;
}

.article-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.article-header h1 {
  margin: 0;
  font-size: clamp(50px, 7.1vw, 96px);
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 30px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.author-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  text-decoration: none;
}

.author-chip img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  object-fit: cover;
}

.byline-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.answer-box {
  position: relative;
  max-width: 850px;
  padding: clamp(26px, 4vw, 42px);
  margin: 54px auto 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg) var(--radius-lg) 10px;
  background: rgba(255, 249, 239, 0.72);
  box-shadow: var(--shadow-soft);
}

.answer-box::before {
  position: absolute;
  top: -7px;
  left: 44px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.answer-box h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 43px);
}

.answer-box > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.article-hero-image {
  margin: 64px 0 76px;
}

.article-hero-image img {
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.article-hero-image figcaption,
.gh-content figcaption {
  margin-top: 12px;
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 740px) 210px;
  gap: 44px;
  justify-content: center;
}

.article-rail {
  grid-column: 1;
  min-width: 0;
}

.rail-inner {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.article-rail nav {
  display: grid;
  gap: 10px;
}

.article-rail nav a {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  transition: color 120ms ease;
}

.article-rail nav a:hover,
.article-rail nav a.is-active {
  color: var(--gold-dark);
}

.toc-empty {
  margin: 0;
  color: var(--ink-muted);
  font-family: var(--read);
  font-size: 12px;
  font-style: italic;
}

.rail-share {
  padding: 0;
  margin-top: 24px;
  cursor: pointer;
  color: var(--gold-dark);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content {
  grid-column: 2;
  min-width: 0;
}

.gh-content {
  color: var(--ink);
  font-family: var(--read);
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.9;
}

.gh-content > * {
  max-width: 100%;
}

.gh-content > *:first-child {
  margin-top: 0;
}

.gh-content p,
.gh-content ul,
.gh-content ol,
.gh-content blockquote,
.gh-content pre,
.gh-content table {
  margin-block: 1.45em;
}

.gh-content h2,
.gh-content h3,
.gh-content h4 {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.gh-content h2 {
  margin: 2.15em 0 0.65em;
  font-size: clamp(36px, 4.4vw, 51px);
}

.gh-content h3 {
  margin: 1.9em 0 0.65em;
  font-size: clamp(28px, 3.2vw, 36px);
}

.gh-content h4 {
  margin: 1.75em 0 0.6em;
  font-size: 25px;
}

.gh-content a {
  color: var(--gold-dark);
  overflow-wrap: anywhere;
}

.gh-content strong {
  color: var(--ink);
  font-weight: 600;
}

.gh-content ul,
.gh-content ol {
  padding-left: 1.4em;
}

.gh-content li {
  padding-left: 0.35em;
  margin: 0.5em 0;
}

.gh-content li::marker {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 800;
}

.gh-content blockquote {
  padding: 0.3em 0 0.3em 1.25em;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.35;
}

.gh-content hr {
  width: 80px;
  height: 1px;
  margin: 3.5em auto;
  border: 0;
  background: var(--line-strong);
}

.gh-content code {
  padding: 0.15em 0.38em;
  border-radius: 6px;
  background: rgba(45, 33, 23, 0.07);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.84em;
}

.gh-content pre {
  max-width: 100%;
  padding: 24px;
  overflow: auto;
  border-radius: var(--radius-sm);
  color: #fff9ef;
  background: #2d2117;
  font-size: 13px;
  line-height: 1.65;
}

.gh-content pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.gh-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 13px;
}

.gh-content th,
.gh-content td {
  min-width: 140px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.gh-content th {
  color: var(--ink);
  background: rgba(201, 132, 47, 0.08);
  font-weight: 800;
}

.kg-width-wide {
  width: min(960px, calc(100vw - 48px));
  max-width: none !important;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  width: 100vw;
  max-width: none !important;
  margin-right: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.kg-image-card img,
.kg-gallery-image img,
.kg-video-container video {
  border-radius: var(--radius-sm);
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.kg-gallery-image {
  flex: 1;
}

.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-card.kg-callout-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 239, 0.78);
  font-size: 0.92em;
}

.kg-callout-emoji {
  flex: 0 0 auto;
  font-family: sans-serif;
}

.kg-toggle-card {
  padding: 0;
  border-block: 1px solid var(--line);
}

.kg-toggle-heading {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
}

.kg-bookmark-card a,
.kg-file-card a,
.kg-product-card-container {
  color: inherit;
  text-decoration: none;
}

.kg-bookmark-card,
.kg-file-card,
.kg-product-card-container {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 239, 0.75);
  box-shadow: 0 10px 30px rgba(78, 51, 24, 0.06);
}

.kg-bookmark-container {
  display: flex;
}

.kg-bookmark-content {
  min-width: 0;
  flex: 1;
  padding: 20px;
}

.kg-bookmark-title,
.kg-file-card-title,
.kg-product-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.kg-bookmark-description,
.kg-file-card-caption,
.kg-product-card-description {
  margin-top: 8px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
}

.kg-bookmark-thumbnail {
  width: 35%;
  min-width: 180px;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-file-card-container,
.kg-product-card-container {
  display: block;
  padding: 24px;
}

.kg-button-card a.kg-btn,
.kg-product-card-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fffaf3;
  background: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.kg-audio-card,
.kg-video-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.kg-embed-card iframe {
  width: 100%;
}

.kg-header-card {
  display: grid;
  min-height: 420px;
  padding: clamp(36px, 7vw, 80px);
  place-content: center;
  border-radius: var(--radius);
  color: var(--paper-bright);
  background: var(--ink);
  text-align: center;
}

.kg-header-card h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
}

.kg-header-card p {
  max-width: 680px;
  margin-inline: auto;
}

.kg-signup-card,
.kg-signup-card-content {
  border-radius: var(--radius);
}

.article-footer {
  max-width: 900px;
  margin: 86px auto 0;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
}

.article-tags a {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
}

.article-tags a:hover {
  border-color: var(--line-strong);
  color: var(--gold-dark);
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
  margin-top: 38px;
  border-block: 1px solid var(--line);
}

.author-box > img {
  width: 86px;
  height: 86px;
  border: 2px solid var(--paper-light);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  object-fit: cover;
}

.author-box h2 {
  margin: 0 0 8px;
  font-size: 32px;
}

.author-box h2 a {
  text-decoration: none;
}

.author-box p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 14px;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 50px);
  margin-top: 56px;
  border-radius: var(--radius-lg);
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 92% 0, rgba(201, 132, 47, 0.38), transparent 18rem),
    var(--ink);
  box-shadow: var(--shadow);
}

.article-cta .eyebrow {
  color: #e8bd80;
}

.article-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
}

.article-cta p:last-child {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 249, 239, 0.72);
  font-family: var(--read);
  font-size: 14px;
}

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

.related-section {
  padding: 100px 0;
  margin-top: 100px;
  border-top: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.48);
}

.collection-hero {
  padding: clamp(66px, 9vw, 120px) 0 82px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.34);
}

.collection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  align-items: center;
  gap: 70px;
}

.collection-layout h1,
.author-layout h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 100px);
}

.collection-answer {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.collection-count {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-layout > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg) var(--radius-lg) 10px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.collection-posts {
  min-height: 400px;
}

.author-layout {
  display: grid;
  grid-template-columns: minmax(210px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.author-portrait {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50% 50% 50% 12%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.author-monogram {
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  background: linear-gradient(145deg, var(--paper-light), var(--gold-soft));
  font-family: var(--serif);
  font-size: 120px;
}

.author-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 800;
}

.author-details a {
  color: var(--gold-dark);
}

.page-main {
  padding-bottom: 110px;
}

.page-header .page-excerpt {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 20px;
  line-height: 1.75;
}

.page-updated {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 700;
}

.page-content {
  max-width: 740px;
  margin: 64px auto 0;
}

.page-image {
  margin-bottom: 60px;
}

.error-main {
  padding: 86px 0 110px;
}

.error-panel {
  max-width: 920px;
  padding: clamp(40px, 8vw, 86px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.68);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.error-code {
  margin: 0;
  color: rgba(201, 132, 47, 0.22);
  font-family: var(--serif);
  font-size: clamp(100px, 20vw, 210px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.error-panel h1 {
  margin: 18px auto 22px;
  font-size: clamp(46px, 7vw, 82px);
}

.error-panel > p:not(.error-code):not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 17px;
}

.error-panel .hero-actions {
  justify-content: center;
}

.error-recent {
  padding-bottom: 0;
}

.site-footer {
  padding: 72px 0 20px;
  border-top: 1px solid var(--line);
  background: #eadfce;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(150px, 0.5fr));
  gap: 60px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  text-decoration: none;
}

.footer-intro p {
  max-width: 490px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 14px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav a,
.footer-nav button {
  justify-self: start;
  padding: 0;
  cursor: pointer;
  color: var(--ink-soft);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.consent-banner {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1080px, calc(100vw - 36px));
  padding: 22px 24px;
  margin-inline: auto;
  border: 1px solid rgba(201, 132, 47, 0.34);
  border-radius: 20px;
  color: var(--paper-bright);
  background: rgba(45, 33, 23, 0.97);
  box-shadow: 0 24px 70px rgba(35, 24, 15, 0.34);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  margin: 0;
  color: rgba(255, 249, 239, 0.74);
  font-family: var(--read);
  font-size: 12px;
  line-height: 1.65;
}

.consent-banner .consent-eyebrow,
.privacy-dialog .consent-eyebrow {
  margin: 0 0 5px;
  color: #e8bd80;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.consent-banner .button-quiet {
  border-color: rgba(255, 249, 239, 0.22);
  color: var(--paper-light);
  background: transparent;
}

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

.privacy-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 28px 90px rgba(35, 24, 15, 0.35);
}

.privacy-dialog::backdrop {
  background: rgba(31, 22, 15, 0.58);
  backdrop-filter: blur(5px);
}

.privacy-dialog form {
  padding: clamp(24px, 5vw, 42px);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.dialog-heading h2 {
  margin: 0;
  font-size: clamp(34px, 6vw, 48px);
}

.dialog-close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  line-height: 1;
}

.privacy-dialog form > p {
  color: var(--ink-soft);
  font-family: var(--read);
  font-size: 13px;
}

.privacy-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.privacy-option > span,
.privacy-option > div {
  display: grid;
  gap: 3px;
}

.privacy-option strong {
  font-size: 13px;
}

.privacy-option span span,
.privacy-option div span {
  color: var(--ink-muted);
  font-family: var(--read);
  font-size: 11px;
  line-height: 1.5;
}

.privacy-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--gold-dark);
}

.privacy-status {
  color: var(--green) !important;
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
}

.dialog-actions > a {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
}

.noscript-note {
  position: fixed;
  z-index: 300;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 16px;
  margin: 0;
  border-radius: 10px;
  color: var(--paper-light);
  background: var(--ink);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: grid;
  }

  .primary-navigation {
    position: absolute;
    top: calc(100% - 1px);
    right: 24px;
    left: 24px;
    display: none;
    max-height: calc(100vh - var(--header-height) - 20px);
    padding: 22px;
    overflow: auto;
    border: 1px solid var(--line-strong);
    border-radius: 0 0 var(--radius) var(--radius);
    background: rgba(255, 249, 239, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .nav,
  .nav-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
  }

  .primary-navigation .nav a,
  .nav-tools a,
  .nav-tools button {
    display: flex;
    width: 100%;
    padding: 11px 4px;
  }

  .nav-tools {
    padding: 12px 0 0;
    margin-top: 10px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 740px);
  }

  .article-rail {
    display: none;
  }

  .article-content {
    grid-column: 1;
  }

  .kg-width-wide {
    width: min(920px, calc(100vw - 48px));
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 1180px);
    --article: min(100% - 32px, 740px);
    --header-height: 72px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-layout,
  .section-heading,
  .collection-layout,
  .author-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 58px;
  }

  .hero-note {
    max-width: 580px;
  }

  .section-heading {
    gap: 22px;
  }

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

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .author-layout {
    text-align: center;
  }

  .author-portrait {
    width: min(280px, 70vw);
    margin-inline: auto;
  }

  .author-details,
  .author-layout .breadcrumbs ol {
    justify-content: center;
  }

  .footer-grid {
    gap: 38px;
  }

  .consent-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-logo {
    max-width: 138px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .primary-navigation {
    right: 16px;
    left: 16px;
  }

  .journal-hero {
    padding-top: 58px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 15vw, 68px);
  }

  .hero-actions,
  .consent-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .consent-actions .button {
    width: 100%;
  }

  .article-section {
    padding-block: 70px;
  }

  .post-card-body {
    padding: 24px;
  }

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

  .pagination-status {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .article-main {
    padding-top: 38px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .article-header h1 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .article-byline {
    align-items: center;
    flex-direction: column;
  }

  .byline-divider {
    display: none;
  }

  .article-hero-image {
    margin-block: 46px 54px;
  }

  .article-hero-image img {
    border-radius: var(--radius);
  }

  .gh-content {
    font-size: 17px;
    line-height: 1.82;
  }

  .kg-width-wide,
  .kg-width-full {
    width: calc(100vw - 16px);
  }

  .kg-gallery-row {
    flex-direction: column;
  }

  .kg-bookmark-container {
    flex-direction: column-reverse;
  }

  .kg-bookmark-thumbnail {
    width: 100%;
    height: 190px;
  }

  .author-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-box > img {
    margin-inline: auto;
  }

  .article-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .article-cta .button {
    width: 100%;
  }

  .collection-layout > img {
    order: -1;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-actions .button {
    width: 100%;
  }

  .consent-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 18px;
    overflow: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-rail,
  .article-cta,
  .related-section,
  .consent-banner,
  .reading-progress {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .article-main {
    padding: 0;
  }

  .article-layout {
    display: block;
  }

  .gh-content {
    color: #000;
    font-size: 11pt;
  }

  a {
    color: #000;
  }
}
