/* ====================================================
   Alex Writes — shared stylesheet
   Warm espresso ground, parchment ink, Georgia throughout.
   ==================================================== */

:root {
  /* Warm dark grey ground, sage-olive header band, bright amber accent.
     Matches the Brain Baking aesthetic. */
  --ground:      #4A4A48;   /* warm dark grey page */
  --ground-2:    #55524D;
  --paper:       #565654;   /* slightly lighter cards */
  --paper-2:     #605D58;

  --ink:         #F2F2F2;   /* warm near-white */
  --ink-soft:    #D7D7D7;
  --ink-quiet:   #A9A99F;

  --amber:       #E8D468;   /* bright warm yellow (Brain Baking-style) */
  --amber-warm:  #F0DD7C;
  --link:        #F4D35E;
  --sage:        #B8B47A;   /* olive-sage secondary */
  --sage-dim:    #8F8B5A;

  --rule:        #6A6A63;
  --rule-warm:   rgba(232,212,104,0.22);

  --header-band: #B8B47A;   /* light olive-sage band on top */
  --header-ink:  #2B2723;   /* dark text on the sage band */

  --shadow:      0 24px 60px -30px rgba(0,0,0,.55), 0 6px 18px -8px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px -18px rgba(0,0,0,.4);

  /* System sans-serif throughout, no serif. Feels native and personal,
     not the AI-editorial default. */
  --serif: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --sans:  system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --measure: 68ch;
  --gutter-x: clamp(1.5rem, 5vw, 4rem);
  --page-max: 1320px;
  --content-max: 860px;
}

/* Kill any remaining italic wherever it appears */
em, i, cite, blockquote { font-style: normal; }

/* Kill browser-default monospace on code-like elements */
code, pre, kbd, samp, tt, var { font-family: var(--serif); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.075rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--amber); color: var(--ground); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --------- Layout scaffolding --------- */
.page      { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--gutter-x); }
.narrow    { max-width: var(--content-max); margin-left: auto; margin-right: auto; }

/* ==========================================================
   MASTHEAD — olive/sage band, hexagonal logo, pill nav
   ========================================================== */
header.masthead {
  background: var(--header-band);
  border-bottom: 2px solid var(--sage-dim);
  padding: 0.75rem 0;
  color: var(--header-ink);
}
.mast-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.85rem;
  text-decoration: none; color: var(--header-ink);
}
.logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--header-ink);
}
.logo-mark svg {
  width: 100%; height: 100%;
  display: block;
}
.logo-word {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--header-ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}
.logo-word em {
  font-style: normal;
  font-weight: 700;
  color: var(--header-ink);
  font-size: 1em;
}
.logo-word small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(43,39,35,0.65);
  font-weight: 500;
  margin-top: 0.35rem;
}
.logo-stack {
  display: inline-flex;
  flex-direction: column;
}

nav.mast-nav {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.9rem;
  flex-wrap: wrap;
}
nav.mast-nav a.pill {
  color: var(--header-ink); text-decoration: none;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid rgba(245,237,200,0.45);
  border-radius: 6px;
  background: rgba(43,39,35,0.15);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background .2s, border-color .2s, color .2s;
  font-weight: 500;
  font-size: 0.85rem;
}
nav.mast-nav a.pill:hover {
  background: var(--ground);
  border-color: var(--amber);
  color: var(--amber);
}
nav.mast-nav a.pill svg { width: 15px; height: 15px; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(43,39,35,0.15);
  color: var(--header-ink);
  border: 1.5px solid rgba(245,237,200,0.45);
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.icon-btn:hover { color: var(--amber); background: var(--ground); border-color: var(--amber); }
.icon-btn svg { width: 16px; height: 16px; }

/* ==========================================================
   HOME — categorized list layout
   ========================================================== */
/* Big site brand display at the top of the home page */
.site-brand {
  padding: 3rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-brand-icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--amber);
}
.site-brand-icon svg { width: 100%; height: 100%; }
.site-brand-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--amber);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 620px) {
  .site-brand { gap: 0.9rem; }
  .site-brand-icon { width: 44px; height: 44px; }
}

.intro {
  padding: 3rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 780px) {
  .intro { grid-template-columns: 1fr; gap: 1.75rem; }
  .intro-avatar { order: -1; width: 200px; height: 200px; justify-self: start; }
}
.intro p a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: background .2s;
}
.intro p a:hover { background: rgba(44,74,46,0.12); }
@media (max-width: 620px) { .intro { grid-template-columns: 72px 1fr; gap: 1.25rem; } }
.intro-avatar {
  width: 280px; height: 280px;
  border-radius: 4px;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  transition: transform .3s ease;
  justify-self: end;
}
.intro-avatar:hover { transform: rotate(0); }
.intro-body { padding-top: 0.15rem; }
.intro p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}
.intro p strong { color: var(--ink); font-weight: 700; }
.intro .sig {
  color: var(--amber);
  font-size: 0.95rem;
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.intro .sig::before {
  content: ""; width: 28px; height: 1px; background: var(--amber);
}

.list-section {
  padding: 2.5rem 0 1.5rem;
}
.list-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
}
.list-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.list-head .section-sub {
  margin: 0.15rem 0 0;
  font-family: var(--serif);
  font-style: normal;
  font-size: 1rem;
  color: var(--ink-quiet);
  letter-spacing: 0.005em;
}
.list-head a.more {
  font-family: var(--serif);
  color: var(--amber);
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
}
.list-head a.more:hover { border-bottom-color: var(--amber); }

.post-list { display: flex; flex-direction: column; }
.row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1rem;
  color: var(--amber);
  text-decoration: none;
  border-radius: 3px;
  transition: background .18s ease, color .18s ease;
  font-size: 1.1rem;
  border-bottom: 1px dashed transparent;
}
.row .row-cover {
  flex: 0 0 62px;
  width: 62px; height: 62px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--paper);
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.55);
  border: 1px solid var(--rule);
  transition: transform .18s ease;
}
.row:hover .row-cover { transform: translateY(-2px); }
.row .row-title {
  font-family: var(--serif);
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.row .row-title .row-sub {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-quiet);
  margin-top: 0.15rem;
  font-weight: 400;
}
.row .row-date {
  font-family: var(--serif);
  color: var(--amber);
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0.85;
}
.row:hover .row-title {
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.row-sub { text-decoration: none !important; }

.row .cat-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-right: 0.75rem;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--rule);
  border-radius: 3px;
  vertical-align: middle;
  font-weight: 500;
}
.row .cat-tag.reading { color: var(--sage); border-color: var(--sage-dim); }
.row .cat-tag.star    { color: var(--amber); border-color: rgba(232,197,71,0.45); }
.row .cat-tag.star::before { content: "★ "; letter-spacing: 0; }
.row .cat-tag.dnf     { color: var(--ink-quiet); border-color: var(--rule); font-style: normal; }

/* ==========================================================
   POST PAGE — article layout
   ========================================================== */
.post-header {
  padding: 4rem 0 2.5rem;
  text-align: left;
}
.post-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--amber);
  margin: 0 0 1.5rem;
  max-width: 22ch;
  text-wrap: balance;
}
.post-meta-row {
  display: flex; align-items: center; gap: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.post-meta-row .item {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--serif);
}
.post-meta-row .item svg { width: 16px; height: 16px; color: var(--sage); }
.post-meta-row .cat {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0.25rem 0.7rem;
  border: 1px solid var(--rule-warm);
  border-radius: 3px;
}

/* Facts card at top of review */
.facts {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  border-radius: 3px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem 2rem;
}
.facts .fact dt {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}
.facts .fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
}
.facts .fact dd.stars { color: var(--amber); letter-spacing: 0.1em; }
.facts .fact dd .off { color: var(--rule); }

/* Cover on post page */
.post-cover {
  aspect-ratio: 2 / 3;
  max-width: 260px;
  margin: 0 0 2rem;
  border-radius: 3px;
  padding: 1.25rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  color: #f7efd6;
  font-family: var(--serif);
  text-align: center;
  float: right;
  margin-left: 2rem;
}
@media (max-width: 640px) {
  .post-cover { float: none; margin: 0 auto 2rem; }
}
.post-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0.06), transparent 40%);
  pointer-events: none;
}
.post-cover .cov-brand {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
  display: flex; justify-content: space-between;
}
.post-cover .cov-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}
.post-cover .cov-author {
  font-size: 0.9rem;
  opacity: 0.85;
  font-family: var(--serif);
}
.post-cover .cov-mark {
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: var(--serif);
}
.cov-a { background: linear-gradient(160deg, #5a4a3a, #2f241a); }
.cov-a .cov-title { color: var(--amber); }
.cov-b { background: linear-gradient(160deg, #3b5849, #1f2f27); }
.cov-b .cov-title { color: #f1e5c8; }
.cov-c { background: linear-gradient(160deg, #813a2b, #4a1e14); }
.cov-c .cov-title { color: #f7efd6; }

/* Real cover image variant for post pages - big centered hero */
.post-cover-image {
  display: block;
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: var(--shadow);
  border: 1px solid var(--rule-warm);
  margin: 2.5rem auto 3rem;
}
.post-cover-image.game {
  max-width: 560px;
}
@media (max-width: 640px) {
  .post-cover-image, .post-cover-image.game { max-width: 90%; }
}

/* Article body */
.article-body {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p { margin: 0 0 1.4rem; }
.article-body p a,
.article-body li a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: background .2s;
}
.article-body p a:hover,
.article-body li a:hover {
  background: rgba(232,197,71,0.15);
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--amber);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.005em;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 2.25rem 0 1rem;
}
.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; color: var(--ink-soft); }

/* Drop cap on first paragraph */
.article-body p.lead::first-letter {
  font-family: var(--serif);
  font-weight: 700;
  float: left;
  font-size: 5rem;
  line-height: 0.85;
  padding: 0.35rem 0.75rem 0 0;
  color: var(--amber);
}

/* Pull quote inside article */
.article-body blockquote.pull {
  padding: 0.5rem 0;
  margin: 2.25rem 0;
  font-family: var(--serif);
  font-style: normal;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
}
.article-body blockquote.pull cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-style: normal;
  margin-top: 0.75rem;
}

/* Pros / cons columns */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
@media (max-width: 620px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons > div {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.5rem 1.75rem;
}
.pros-cons h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule);
}
.pros-cons .pros h4 { color: var(--sage); }
.pros-cons .cons h4 { color: #c68a5c; }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li {
  padding: 0.55rem 0 0.55rem 1.35rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.pros-cons .pros li::before {
  content: "+";
  position: absolute; left: 0; top: 0.55rem;
  color: var(--sage);
  font-weight: 700;
}
.pros-cons .cons li::before {
  content: "−";
  position: absolute; left: 0; top: 0.55rem;
  color: #c68a5c;
  font-weight: 700;
}

/* Verdict box */
.verdict-box {
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  border: 1px solid var(--rule-warm);
  border-radius: 3px;
  padding: 2rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.verdict-box .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.verdict-box .verdict-line {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--amber);
  line-height: 1.35;
  margin: 0 0 0.75rem;
  max-width: 30ch;
  margin-left: auto; margin-right: auto;
}
.verdict-box .who {
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

/* Related */
.related {
  margin: 4rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.related h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 1rem;
  font-size: 1.35rem;
}
.related .post-list .row { padding: 0.7rem 0.75rem; font-size: 1.05rem; }

/* Post nav */
.post-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin: 3rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  gap: 1rem;
  flex-wrap: wrap;
}
.post-nav a {
  color: var(--amber);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 0.55rem;
  transition: gap .2s;
}
.post-nav a:hover { text-decoration: underline; }
.post-nav a.back svg { transition: transform .2s; }
.post-nav a.back:hover svg { transform: translateX(-4px); }

/* ==========================================================
   ABOUT PAGE — linear editorial layout, Brain Baking style
   ========================================================== */
.about-article {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 0 2rem;
}
.about-para,
.about-figure figcaption,
.about-h2,
.about-h3,
.about-h1 {
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}
.about-figure {
  margin-left: auto;
  margin-right: auto;
  max-width: 78ch;
}
.about-figure img {
  max-width: 100%;
}

.about-h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--amber);
  margin: 0 auto 2.5rem;
  max-width: 800px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-wrap: balance;
}
.about-h1-icon {
  flex: 0 0 auto;
  width: clamp(48px, 6vw, 68px);
  height: clamp(48px, 6vw, 68px);
  color: var(--amber);
  display: grid; place-items: center;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  padding: 0.55rem;
}
.about-h1-icon svg { width: 100%; height: 100%; }

.about-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4rem auto 2rem;
  max-width: 800px;
}

.about-h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 3rem auto 1.25rem;
  max-width: 800px;
}

.about-para {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 auto 1.75rem;
  max-width: 800px;
}
.about-para em { font-style: normal; color: var(--ink-soft); }
.about-para a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: background .2s;
}
.about-para a:hover { background: rgba(232,197,71,0.15); }

.about-para .day-stamp {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95em;
  background: var(--paper);
  padding: 0.1rem 0.55rem;
  border-radius: 2px;
  border: 1px solid var(--rule);
  color: var(--amber);
  letter-spacing: 0.02em;
}

.about-figure {
  margin: 3rem auto;
  max-width: 460px;
  background: var(--paper);
  border: 1px solid var(--rule-warm);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-figure img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--rule);
  margin: 0 auto;
}
.about-figure figcaption {
  font-family: var(--serif);
  font-style: normal;
  color: var(--ink-quiet);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer.foot {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
  background: var(--ground-2);
}
.foot-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: start;
}
@media (max-width: 640px) { .foot-inner { grid-template-columns: 1fr; } }
.foot-mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.foot-mark span { color: var(--amber); }
.foot-copy {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--ink-quiet);
  margin-top: 0.5rem;
  max-width: 44ch;
  line-height: 1.65;
}
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.foot-links a:hover { color: var(--amber); border-color: var(--amber); }
.colophon {
  grid-column: 1 / -1;
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px dashed var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-quiet);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
