/* ═══════════════════════════════════════════════════════════
   EUN SOO CHOI — dark editorial, photo-led
   ═══════════════════════════════════════════════════════════ */

:root, [data-theme="gold"] {
  --bg-0:       #0b0d12;
  --bg-1:       #14161e;
  --bg-card:    #1a1d26;
  --bg-card-2:  #21242f;
  --line:       #2d3140;
  --line-2:     #3a3f50;

  --text:       #f5ecd6;
  --text-2:     #d8c9a5;
  --muted:      #9b8e74;
  --dim:        #6b6354;

  --gold:       #d6a85a;
  --gold-2:     #e8c47a;
  --gold-dim:   #8a6e3b;
  --claret:     #b94c4c;
  --claret-2:   #8a3838;
  --moss:       #6e8a5d;
  --paper:      #f0e6cf;
}

[data-theme="crimson"] {
  --bg-0: #100b0b; --bg-1: #1a1414; --bg-card: #221c1c; --bg-card-2: #2a2222;
  --line: #3a2c2c; --line-2: #4d3a3a;
  --text: #fbece7; --text-2: #e8cfc7; --muted: #a6928a; --dim: #6b5852;
  --gold: #d44b5e; --gold-2: #f06a78; --gold-dim: #8a2f3d;
  --claret: #6a8a5d; --claret-2: #54704a;
  --moss: #d6a85a; --paper: #f7ece4;
}
[data-theme="forest"] {
  --bg-0: #0b110d; --bg-1: #131c17; --bg-card: #1a2620; --bg-card-2: #21302a;
  --line: #2d4036; --line-2: #3b5346;
  --text: #ecf2e3; --text-2: #c8d3b6; --muted: #8a9b80; --dim: #57655c;
  --gold: #88b07c; --gold-2: #afd09f; --gold-dim: #557348;
  --claret: #d49a4a; --claret-2: #8a5d2a;
  --moss: #b59b5e; --paper: #ecf1de;
}
[data-theme="indigo"] {
  --bg-0: #080a14; --bg-1: #10142a; --bg-card: #181c33; --bg-card-2: #222742;
  --line: #2d345a; --line-2: #3e4778;
  --text: #ecf0ff; --text-2: #c8cce5; --muted: #8a8fad; --dim: #595c78;
  --gold: #8aa6ff; --gold-2: #a8bfff; --gold-dim: #4f6cb0;
  --claret: #d65a8c; --claret-2: #8a3a5f;
  --moss: #74a37f; --paper: #ecf0ff;
}
[data-theme="paper"] {
  --bg-0: #f5efe1; --bg-1: #ede4cd; --bg-card: #fffbf2; --bg-card-2: #f9efd7;
  --line: #d8c9a5; --line-2: #c0ad88;
  --text: #1c1a14; --text-2: #4a4234; --muted: #7a6f5a; --dim: #b0a387;
  --gold: #8a6624; --gold-2: #b58539; --gold-dim: #6c4f1a;
  --claret: #a3413f; --claret-2: #7a2c2c;
  --moss: #506f3f; --paper: #fffbf2;
}

/* Theme-independent tokens — fonts, shadows. Defined globally so every
   theme inherits them. */
:root {
  --kr:         "Pretendard Variable", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --serif:      "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --display:    "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --capitals:   "Cinzel", "Cormorant Garamond", serif;
  --shadow-card: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lift: 0 14px 40px rgba(0,0,0,0.55);
  --shadow-deep: 0 32px 80px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font: 17px/1.65 var(--kr);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(1400px 800px at 8% -10%, rgba(214,168,90,0.10), transparent 60%),
    radial-gradient(1300px 800px at 92% -8%, rgba(185,76,76,0.07), transparent 60%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: transparent; border: 0; }
:lang(ko), .kr { font-family: var(--kr); word-break: keep-all; }

/* ── Top bar ────────────────────────────────────────────── */
.topbar {
  display: flex;
  align-items: center;
  padding: 14px 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  position: sticky;
  top: 0;
  z-index: 30;
  gap: 28px;
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-mark { color: var(--gold); font-family: var(--display); font-size: 20px; }
.brand-en {
  font-family: var(--capitals);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--text);
}
.topnav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-family: var(--kr);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}
.topnav a { padding: 4px 2px; border-bottom: 2px solid transparent; transition: 0.15s; }
.topnav a:hover { border-bottom-color: var(--gold); color: var(--text); }

/* ──────────────────────────────────────────────────────────
   HERO — compact, stats inline
   ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 36px 56px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 56px;
  align-items: end;
}
@media (max-width: 920px) {
  .hero { padding: 48px 22px 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-left { display: flex; flex-direction: column; gap: 14px; }
.hero-eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  color: var(--gold);
  margin: 0;
}
.hero-eyebrow .dot { color: var(--gold-2); font-size: 7px; }
.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  letter-spacing: 3px;
  color: var(--muted);
  font-size: 10.5px;
}
.hero-stats-inline .stat b {
  color: var(--gold-2);
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  margin-right: 6px;
}

.hero-name {
  font-family: var(--kr);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.86;
  letter-spacing: -8px;
  margin: 8px 0 0;
  color: var(--text);
}
.hero-name .accent { color: var(--gold); }
.hero-name-en {
  font-family: var(--capitals);
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 12px;
  color: var(--muted);
  margin: 22px 0 0;
}
.hero-tagline {
  font-family: var(--kr);
  font-weight: 600;
  font-size: 18px;
  color: var(--gold-2);
  margin: 18px 0 0;
}
.hero-bio {
  font-family: var(--kr);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 56ch;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin: 22px 0 0;
}

.hero-portrait { display: flex; justify-content: center; align-items: center; position: relative; }
.portrait-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 25%, var(--gold-2), var(--gold) 50%, var(--gold-dim) 100%);
  box-shadow: var(--shadow-deep);
  background-size: cover; background-position: center;
  border: 8px solid var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portrait-frame::before {
  content: "";
  position: absolute; inset: -1px;
  border: 1px solid rgba(255,235,200,0.35);
  pointer-events: none;
}
.portrait-frame.has-photo .portrait-monogram,
.portrait-frame.has-photo .portrait-rune { display: none; }
.portrait-monogram {
  display: flex; gap: 18px;
  font-family: var(--capitals);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: 4px;
  color: rgba(255, 250, 232, 0.92);
  text-shadow: 0 4px 18px rgba(40,20,5,0.4);
}
.portrait-rune {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--bg-card);
  color: var(--gold);
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 2px;
  text-align: center;
  line-height: 1.25;
  border: 1px solid var(--gold-dim);
  box-shadow: 0 8px 18px rgba(0,0,0,0.5);
}

.hero-rule {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  color: var(--muted);
}
.hero-rule-sep { color: var(--gold); letter-spacing: 5px; }

/* ──────────────────────────────────────────────────────────
   SECTION HEAD
   ────────────────────────────────────────────────────────── */
.section { padding: 100px 36px 40px; max-width: 1400px; margin: 0 auto; }
@media (max-width: 720px) { .section { padding: 60px 22px 36px; } }

.section-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  margin-bottom: 44px;
  align-items: start;
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 58px;
  color: var(--gold);
  line-height: 0.9;
  text-align: right;
  padding-right: 20px;
  border-right: 1px solid var(--gold-dim);
  align-self: stretch;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -1px;
  color: var(--text);
  margin: 0;
  line-height: 1.02;
}
.section-sub {
  font-family: var(--kr);
  font-size: 15px;
  color: var(--text-2);
  margin: 14px 0 0;
  grid-column: 2;
  max-width: 64ch;
}

/* ──────────────────────────────────────────────────────────
   II · TWO JOURNEYS — full-bleed photo blocks
   ────────────────────────────────────────────────────────── */
.journeys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 980px) { .journeys { grid-template-columns: 1fr; gap: 18px; } }

.journey {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.journey-cover {
  position: relative;
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  background-color: #2a2a30;
  border-bottom: 1px solid var(--line);
}
.journey-cover::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,18,0.0) 30%, rgba(11,13,18,0.85) 100%),
    linear-gradient(135deg, rgba(11,13,18,0.20), transparent 60%);
}
.journey-cover-label {
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 11px;
  color: var(--gold-2);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.journey-cover-flag {
  position: absolute;
  top: 14px; right: 22px;
  font-size: 28px;
}
.journey-cover-title {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  font-family: var(--kr);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.5px;
  line-height: 1.18;
  color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  word-break: keep-all;
}
.journey-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-2);
  letter-spacing: 0.5px;
  padding: 14px 28px 0;
}
.journey-parts {
  display: flex;
  flex-direction: column;
  padding: 4px 28px 24px;
}
.journey-part {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: 0.18s;
  text-align: left;
}
.journey-part:hover { padding-left: 6px; }
.journey-part:hover .jp-thumb { transform: scale(1.05); }
.journey-part:hover .jp-text { color: var(--gold-2); }
.jp-thumb {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  background: var(--bg-card-2) center/cover no-repeat;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.jp-num {
  position: absolute;
  bottom: 4px; right: 6px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.jp-text {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.15s;
  word-break: keep-all;
}

/* ──────────────────────────────────────────────────────────
   III · DREW MISSIONARY — feature block
   ────────────────────────────────────────────────────────── */
.drew-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
@media (max-width: 980px) { .drew-wrap { grid-template-columns: 1fr; } }

.drew-feature {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 5/6;
  background-size: cover;
  background-position: center;
  background-color: #2a2620;
  box-shadow: var(--shadow-deep);
  cursor: pointer;
}
.drew-feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85));
}
.drew-feature-text {
  position: absolute;
  left: 28px; right: 28px; bottom: 30px;
  z-index: 2;
}
.drew-feature-tag {
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 11px;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.drew-feature-title {
  font-family: var(--kr);
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  word-break: keep-all;
  margin: 0;
}

.drew-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
@media (max-width: 980px) { .drew-list { grid-template-columns: 1fr; } }
.drew-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: 0.18s;
  position: relative;
  overflow: hidden;
}
.drew-card:hover { transform: translateY(-2px); border-color: var(--gold-dim); }
.drew-card-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 3px;
  background-size: cover; background-position: center;
  background-color: var(--bg-card-2);
  margin: -6px -6px 4px;
  width: calc(100% + 12px);
}
.drew-card .badge {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 10px;
  color: var(--gold);
}
.drew-card .drew-card-title {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.3px;
  word-break: keep-all;
}
.drew-card .drew-card-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

/* ──────────────────────────────────────────────────────────
   PHOTO-GRID (Honam + Scotland use this)
   ────────────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .photo-grid { grid-template-columns: 1fr; } }

.photo-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: 0.18s;
}
.photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.photo-card .ph-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card-2);
  border-bottom: 1px solid var(--line);
}
.photo-card .ph-img.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--gold-dim);
  font-size: 20px;
}
.photo-card .ph-body {
  padding: 18px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.photo-card .ph-badge {
  font-family: var(--capitals);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
}
.photo-card .ph-title {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin: 0;
}
.photo-card .ph-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
}

/* ──────────────────────────────────────────────────────────
   VI · BOOKSHELF — real book spines, dark wood feel
   ────────────────────────────────────────────────────────── */
.bookshelf {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
  padding-bottom: 40px;
  border-bottom: 8px solid;
  border-image: linear-gradient(90deg, #3a2611, #7a4f24 50%, #3a2611) 1;
  position: relative;
}
@media (max-width: 980px) { .bookshelf { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .bookshelf { grid-template-columns: repeat(2, 1fr); } }

.book-spine {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 3px 3px 0 0;
  padding: 26px 18px 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: 0.2s;
  color: var(--paper);
  box-shadow:
    inset -8px 0 14px rgba(0,0,0,0.30),
    inset 4px 0 4px rgba(255,255,255,0.10),
    0 16px 36px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 60%, var(--gold-2) 100%);
}
.book-spine:nth-child(2n) { background: linear-gradient(135deg, #25304b 0%, #38496e 60%, #5066a0 100%); }
.book-spine:nth-child(3n) { background: linear-gradient(135deg, #5a2222 0%, var(--claret) 60%, #d36868 100%); }
.book-spine:nth-child(4n) { background: linear-gradient(135deg, #2c402c 0%, var(--moss) 60%, #91ad7a 100%); }
.book-spine:hover { transform: translateY(-8px); }
.book-spine::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  top: 14px; bottom: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  pointer-events: none;
}
.book-spine .book-tag {
  font-family: var(--capitals);
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,250,232,0.7);
}
.book-spine .book-title {
  font-family: var(--kr);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--paper);
  word-break: keep-all;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  margin: 0;
}
.book-spine .book-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 12.5px;
  color: rgba(255,250,232,0.78);
}

/* ──────────────────────────────────────────────────────────
   VII · VOICE — editorial numbered list
   ────────────────────────────────────────────────────────── */
.voice-list { list-style: none; padding: 0; margin: 0; }
.voice-item {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: 0.18s;
}
@media (max-width: 720px) {
  .voice-item { grid-template-columns: 60px 1fr; }
  .voice-item .voice-meta { grid-column: 1 / -1; padding-left: 84px; text-align: left; }
}
.voice-item:hover { background: rgba(214,168,90,0.05); padding-left: 10px; padding-right: 10px; }
.voice-item:hover .voice-num { color: var(--gold); }
.voice-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  color: var(--gold-dim);
  letter-spacing: -1px;
  transition: 0.15s;
}
.voice-title {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text);
  word-break: keep-all;
}
.voice-meta {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  text-align: right;
}

/* ──────────────────────────────────────────────────────────
   VIII · PRESS
   ────────────────────────────────────────────────────────── */
.press-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .press-wall { grid-template-columns: 1fr; } }
.press-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: 0.18s;
  box-shadow: var(--shadow-card);
  position: relative;
}
.press-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--claret));
}
.press-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); border-color: var(--gold-dim); }
.press-eyebrow {
  font-family: var(--capitals);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.press-title {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.3px;
  word-break: keep-all;
}
.press-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
}

/* ──────────────────────────────────────────────────────────
   IX · ABOUT
   ────────────────────────────────────────────────────────── */
.section-about { padding-bottom: 120px; }
.about-body {
  font-family: var(--kr);
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-2);
  max-width: 780px;
  margin: 0 auto;
  word-break: keep-all;
}
.about-body p { margin: 0 0 1.3em; }
.about-body p:first-child::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 5.4em;
  float: left;
  line-height: 0.84;
  padding: 8px 12px 0 0;
  color: var(--gold);
}
.about-pullquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--gold-2);
  text-align: center;
  padding: 32px 24px;
  margin: 36px 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  letter-spacing: -0.3px;
}

/* ──────────────────────────────────────────────────────────
   MODAL
   ────────────────────────────────────────────────────────── */
.modal.hidden { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background: var(--bg-card);
  max-width: 880px;
  width: calc(100% - 32px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  margin: 32px auto;
  border-radius: 6px;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--line);
}
.modal-hero {
  width: 100%;
  aspect-ratio: 21/9;
  background-size: cover; background-position: center;
  background-color: var(--bg-card-2);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.modal-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(11,13,18,0.65));
}
.modal-inner { padding: 38px 56px 50px; }
@media (max-width: 720px) { .modal-inner { padding: 28px 24px 40px; } }
.modal-close {
  position: absolute; top: 14px; right: 18px;
  z-index: 3;
  font-size: 30px; color: var(--text); line-height: 1;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--claret); }
.modal-eyebrow {
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-title {
  font-family: var(--kr);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0 0 14px;
  word-break: keep-all;
}
.modal-subtitle {
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-2);
  margin: 0 0 24px;
}
.modal-meta {
  font-family: var(--kr);
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.modal-meta .pub { color: var(--gold-2); font-weight: 700; }
.modal-actions { display: flex; gap: 12px; margin-bottom: 26px; }
.modal-actions a {
  background: rgba(214,168,90,0.10);
  border: 1px solid var(--gold-dim);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--kr);
  font-weight: 600;
  font-size: 13px;
  color: var(--gold-2);
}
.modal-actions a:hover { background: var(--gold); color: var(--bg-0); border-color: var(--gold); }
.modal-body {
  font-family: var(--kr);
  font-size: 17px;
  line-height: 2.0;
  color: var(--text-2);
}
.modal-body p { margin: 0 0 1.15em; }
.modal-pending {
  font-family: var(--kr);
  color: var(--muted);
  background: var(--bg-card-2);
  border-radius: 4px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 24px 80px;
  text-align: center;
  background: rgba(11,13,18,0.6);
}
.footer-name {
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 12px;
}
.footer-verse {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── Theme toggle + drawer ──────────────────────────────── */
.theme-toggle {
  font-size: 18px; color: var(--gold); padding: 0; line-height: 1;
  margin-left: 4px;
}
.theme-toggle:hover { color: var(--gold-2); }
.theme-drawer { position: fixed; inset: 0; z-index: 200; }
.theme-drawer.hidden { display: none; }
.theme-drawer::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
}
.theme-drawer-card {
  position: absolute; top: 70px; right: 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  width: 280px;
  box-shadow: var(--shadow-lift);
}
.theme-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--capitals);
  letter-spacing: 4px; font-size: 11px;
  color: var(--gold); margin-bottom: 16px;
}
.theme-close { font-size: 22px; color: var(--muted); line-height: 1; }
.theme-close:hover { color: var(--text); }
.theme-swatches { display: flex; flex-direction: column; gap: 8px; }
.theme-swatch {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--kr); font-size: 14px; font-weight: 600;
  color: var(--text-2);
  cursor: pointer; transition: 0.15s;
  text-align: left;
}
.theme-swatch:hover { border-color: var(--gold); color: var(--text); }
.theme-swatch.active { border-color: var(--gold); background: rgba(214,168,90,0.08); color: var(--text); }
.theme-swatch .sw {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--line);
}
.sw-gold    { background: linear-gradient(135deg, #d6a85a, #8a6e3b); }
.sw-crimson { background: linear-gradient(135deg, #f06a78, #6a2935); }
.sw-forest  { background: linear-gradient(135deg, #afd09f, #2f5224); }
.sw-indigo  { background: linear-gradient(135deg, #a8bfff, #2d2b6e); }
.sw-paper   { background: linear-gradient(135deg, #fffbf2, #b58539); }

/* ── Modal — magazine treatment ─────────────────────────── */
.modal-card { padding: 0 !important; }
.modal-inner h1.modal-title { margin-top: 0; }
.modal-grab-handle {
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  z-index: 3;
}
.modal-lang-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 22px;
  padding: 10px 14px;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
}
.modal-lang-bar .lab {
  font-family: var(--capitals);
  letter-spacing: 3px; font-size: 10px;
  color: var(--muted); margin-right: 8px;
}
.modal-lang-bar button {
  font-family: var(--kr); font-weight: 600; font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--line);
  transition: 0.15s;
}
.modal-lang-bar button:hover { border-color: var(--gold-dim); color: var(--text); }
.modal-lang-bar button.active {
  background: var(--gold); color: var(--bg-0); border-color: var(--gold);
}
.modal-lang-bar button:disabled { opacity: 0.5; cursor: progress; }

/* Body: magazine-grade typography */
.modal-body p { margin: 0 0 1.1em; text-indent: 0; }
.modal-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 4.6em;
  float: left;
  line-height: 0.84;
  padding: 6px 14px 0 0;
  color: var(--gold);
}
.modal-body img.inline {
  display: block;
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: 4px;
  margin: 28px 0;
  border: 1px solid var(--line);
}
.modal-body .modal-rule {
  display: block;
  text-align: center;
  font-family: var(--capitals);
  letter-spacing: 6px;
  color: var(--gold);
  font-size: 12px;
  margin: 28px 0;
}

/* Compact list block for image-less works */
.compact-list {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.compact-list-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition: 0.15s;
  text-align: left;
}
.compact-list-item:first-child { border-top: 0; }
.compact-list-item:hover { background: var(--bg-card-2); }
.compact-list-item .cl-num {
  font-family: var(--display); font-style: italic;
  font-size: 22px; color: var(--gold-dim);
  font-weight: 500;
}
.compact-list-item .cl-title {
  font-family: var(--kr); font-weight: 700; font-size: 16px;
  color: var(--text); line-height: 1.4;
  word-break: keep-all;
}
.compact-list-item .cl-meta {
  font-family: var(--display); font-style: italic;
  font-size: 13px; color: var(--muted);
}

/* Donation showcase milestone */
.donation-showcase {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(214,168,90,0.12), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 48px 44px 40px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 720px) {
  .donation-showcase { grid-template-columns: 1fr; padding: 30px 24px; gap: 18px; text-align: center; }
}
.donation-showcase .donation-number {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -3px;
}
.donation-showcase .donation-tag {
  font-family: var(--capitals);
  letter-spacing: 5px; font-size: 11px;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.donation-showcase .donation-title {
  font-family: var(--kr); font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.5px;
  color: var(--text); margin: 0 0 8px;
  word-break: keep-all;
}
.donation-showcase .donation-sub {
  font-family: var(--kr); font-size: 15px;
  line-height: 1.7; color: var(--text-2);
  margin: 0;
}

/* Subtitle line under main title (bilingual) */
.bilingual-en {
  font-family: var(--display); font-style: italic;
  font-size: 0.6em; font-weight: 400;
  color: var(--muted); letter-spacing: 0.5px;
  display: block; margin-top: 6px;
}

/* ── Wall sections (newspaper layout) ─────────────────────── */
.wall-section, .legacy-section, .about-section {
  max-width: 1400px; margin: 0 auto;
  padding: 60px 32px;
}
.wall-head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 18px; margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.wall-head::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 60px; height: 2px; background: var(--gold);
}
.wall-pill {
  font-family: var(--capitals);
  letter-spacing: 5px; font-size: 11px;
  color: var(--gold);
  padding: 5px 11px;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
}
.wall-title {
  font-family: var(--display); font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px);
  color: var(--text);
  margin: 0; letter-spacing: -1px; line-height: 1.05;
}
.wall-filter {
  margin-left: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.wall-chip {
  font-family: var(--kr); font-weight: 600; font-size: 12.5px;
  color: var(--text-2);
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  cursor: pointer;
  transition: 0.15s;
}
.wall-chip:hover { border-color: var(--gold-dim); color: var(--text); }
.wall-chip.active {
  background: var(--gold); color: var(--bg-0); border-color: var(--gold);
}

/* Group block — header + journey-style list */
.wall-groups { display: flex; flex-direction: column; gap: 56px; }
.wall-group { display: grid; grid-template-columns: 200px 1fr; gap: 36px; }
@media (max-width: 820px) {
  .wall-group { grid-template-columns: 1fr; gap: 14px; }
}
.wall-group-meta {
  position: sticky; top: 90px; align-self: start;
}
.wall-group-num {
  font-family: var(--display); font-style: italic;
  font-weight: 500;
  font-size: 56px; line-height: 1;
  color: var(--gold); margin-bottom: 10px;
}
.wall-group-title {
  font-family: var(--kr); font-weight: 800;
  font-size: 20px; line-height: 1.2; letter-spacing: -0.3px;
  color: var(--text);
  margin: 0;
  word-break: keep-all;
}
.wall-group-title-en {
  font-family: var(--display); font-style: italic;
  font-size: 14px; color: var(--gold-2);
  margin: 4px 0 0;
}
.wall-group-count {
  font-family: var(--capitals); letter-spacing: 3px;
  font-size: 10.5px; color: var(--muted);
  margin-top: 14px;
}
.wall-group-pub {
  font-family: var(--display); font-style: italic;
  font-size: 13px; color: var(--muted);
  margin-top: 4px;
}

/* List items: thumbnail + index + title — denser, newspaper-style */
.wall-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
@media (max-width: 1200px) { .wall-items { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px)  { .wall-items { grid-template-columns: 1fr; } }
.wall-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: 0.18s;
  text-align: left;
  background: transparent;
}
.wall-item:hover { padding-left: 6px; }
.wall-item:hover .wall-thumb { transform: scale(1.05); }
.wall-item:hover .wall-item-title { color: var(--gold-2); }
.wall-thumb {
  width: 72px; height: 72px;
  border-radius: 4px;
  background: var(--bg-card-2) center/cover no-repeat;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.wall-thumb.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic;
  color: var(--gold-dim); font-size: 26px;
}
.wall-thumb .wall-thumb-num {
  position: absolute; bottom: 4px; right: 6px;
  font-family: var(--display); font-style: italic;
  font-weight: 700; font-size: 14px;
  color: var(--paper);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  background: rgba(0,0,0,0.4);
  padding: 0 6px; border-radius: 2px;
}
.wall-item-body {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.wall-item-cat {
  font-family: var(--capitals); letter-spacing: 3px;
  font-size: 10px; color: var(--gold);
}
.wall-item-title {
  font-family: var(--kr); font-weight: 700; font-size: 15.5px;
  color: var(--text); line-height: 1.32;
  letter-spacing: -0.2px;
  word-break: keep-all;
  transition: color 0.15s;
}
.wall-item-meta {
  font-family: var(--display); font-style: italic;
  font-size: 12.5px; color: var(--muted);
  margin-top: 2px;
}

/* About */
.about-body {
  font-family: var(--kr);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 780px;
  margin: 0 auto;
  word-break: keep-all;
}
.about-body p { margin: 0 0 1.2em; }
.about-body p:first-child::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 5.2em;
  float: left;
  line-height: 0.84;
  padding: 8px 12px 0 0;
  color: var(--gold);
}

/* ── Modal — thicker borders + tighter rhythm + chiaroscuro ── */
.modal-backdrop { background: rgba(0,0,0,0.85) !important; }
.modal-card {
  border: 3px double var(--gold-dim) !important;
  box-shadow:
    0 0 0 6px var(--bg-0),
    var(--shadow-deep),
    inset 0 0 0 1px rgba(255,235,200,0.06) !important;
  border-radius: 4px !important;
}
.modal-inner { padding: 36px 56px 48px !important; }
@media (max-width: 720px) { .modal-inner { padding: 26px 22px 36px !important; } }
.modal-title { font-size: 32px !important; line-height: 1.18 !important; }
.modal-meta { padding-bottom: 14px !important; margin-bottom: 18px !important; }
.modal-actions { margin-bottom: 18px !important; }
.modal-lang-bar { margin: 8px 0 16px !important; padding: 8px 12px !important; }
.modal-body {
  font-size: 16.5px !important;
  line-height: 1.55 !important;       /* tighter than 2.0 — denser, more readable */
  color: var(--text) !important;
}
.modal-body p { margin: 0 0 0.7em !important; }   /* less air between paragraphs */
.modal-body p:first-of-type::first-letter {
  font-size: 4.2em !important;
  padding: 4px 10px 0 0 !important;
  line-height: 0.82 !important;
}
/* Drop the ✦ rules — they were noisy */
.modal-body .modal-rule { display: none !important; }

/* Inline images in modal body — fit the column, not squished */
.modal-images-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px; margin: 24px 0 28px;
}
.modal-images-strip .ms-img {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-card-2) center/cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: zoom-in;
}
.modal-inline-img {
  display: block;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;     /* never squish */
  margin: 22px auto;
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 3px;
}

/* Allow chip row to wrap nicely as a second row instead of horizontal-scrolling */
.wall-filter {
  flex-basis: 100%;
  margin-top: 14px;
  margin-left: 0;
}

/* ── Refinements (continue-pass) ─────────────────────────── */

/* Wall items: align vertically, equal column widths, tighter spacing */
.wall-items {
  align-items: start;
  gap: 6px 28px;
}
.wall-item {
  align-items: start;
  padding: 14px 0;
}
.wall-item .wall-thumb {
  align-self: start;
}
.wall-item-body { padding-top: 2px; }
.wall-item-title { font-size: 15px; line-height: 1.36; }
.wall-item-meta { font-size: 12px; }
.wall-thumb.placeholder {
  background:
    linear-gradient(135deg, rgba(214,168,90,0.10), rgba(214,168,90,0.02));
}
.wall-thumb.placeholder::after {
  content: "";   /* no more ✦ glyph — clean blank tile */
}

/* Bookshelf — sane fallback for missing book cover (no dad photo) */
.book-spine.no-image {
  /* Already styled by .book-spine — just emphasize the title */
}

/* Modal body — tighter, more like a news article */
.modal-body { font-size: 16.5px !important; line-height: 1.55 !important; }
.modal-body p {
  margin: 0 0 0.85em !important;
  text-indent: 0 !important;
}
.modal-body p:first-of-type::first-letter {
  font-size: 4.4em !important;
  padding: 4px 14px 0 0 !important;
  line-height: 0.82 !important;
  color: var(--gold) !important;
  font-weight: 500 !important;
  font-style: italic !important;
}

/* Inline figures inside modal body — shape responds to native aspect ratio */
.inline-fig {
  margin: 22px 0;
  padding: 0;
}
.inline-fig .inline-fig-frame {
  background: var(--bg-card-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  display: block;
  overflow: hidden;
}
.inline-fig img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: zoom-in;
  border-radius: 2px;
}

/* Wide / landscape — full body width */
.inline-fig.fig-wide {}
.inline-fig.fig-wide img { width: 100%; }

/* Square or near-square — narrower, centered */
.inline-fig.fig-square {
  max-width: 78%;
  margin-left: auto; margin-right: auto;
}

/* Tall portrait — float right with text wrap on wide screens */
@media (min-width: 760px) {
  .inline-fig.fig-tall {
    float: right;
    width: 38%;
    margin: 4px 0 14px 28px;
    shape-outside: margin-box;
  }
}
@media (max-width: 759px) {
  .inline-fig.fig-tall {
    max-width: 58%;
    margin-left: auto; margin-right: auto;
  }
}

/* Clear floats inside body */
.modal-body::after { content: ""; display: block; clear: both; }

/* Drop the old grid strip — we don't use it anymore */
.modal-images-strip { display: none !important; }

/* ── Group meta — bigger, colorful, less easy to miss ───── */
.wall-group { gap: 30px; }
.wall-group-meta {
  background:
    linear-gradient(180deg, rgba(214,168,90,0.10), rgba(214,168,90,0.02));
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 18px 20px;
  width: 240px;
  box-shadow: var(--shadow-card);
}
.wall-group-num {
  font-size: 34px !important;
  color: var(--gold-2) !important;
  margin-bottom: 4px !important;
}
.wall-group-title {
  font-size: 22px !important;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text) !important;
  margin-bottom: 4px;
}
.wall-group-title-en {
  font-size: 16px !important;
  color: var(--gold) !important;
  font-weight: 500;
  margin: 4px 0 12px !important;
}
.wall-group-pub {
  font-family: var(--kr) !important;
  font-style: normal !important;
  font-size: 13px !important;
  color: var(--gold-2) !important;
  font-weight: 600;
  letter-spacing: -0.1px;
  margin-top: 0 !important;
  padding-top: 10px;
  border-top: 1px solid var(--gold-dim);
}
.wall-group-count {
  font-size: 12px !important;
  color: var(--text-2) !important;
  letter-spacing: 1.5px !important;
  margin-top: 10px !important;
  line-height: 1.45;
  font-family: var(--kr) !important;
  text-transform: none;
  word-break: keep-all;
}
@media (max-width: 820px) {
  .wall-group-meta { width: auto; }
  .wall-group-num { font-size: 28px !important; }
  .wall-group-title { font-size: 20px !important; }
}

/* ── Wall items — tighter boxes, slightly bigger titles ── */
.wall-items { gap: 4px 24px; padding-top: 12px; }
.wall-item { padding: 10px 0; }
.wall-item-title { font-size: 16.5px !important; font-weight: 700; line-height: 1.32; }
.wall-item-meta  { font-size: 12.5px !important; }
.wall-item-cat   { font-size: 10.5px; }
.wall-thumb      { width: 64px; height: 64px; border-radius: 6px; }
.wall-thumb-num  { font-size: 13px; }

/* ── Photos: rounded squircles + softer frame ─────────── */
.inline-fig .inline-fig-frame {
  border-radius: 10px;
  padding: 0;        /* image fills frame */
  background: var(--bg-card-2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,235,200,0.04) inset,
    0 10px 30px rgba(0,0,0,0.40);
}
.inline-fig img { border-radius: 10px; }
.modal-hero {
  border-bottom: 0 !important;
  margin: 0;
  position: relative;
}
.modal-hero::after {
  content: "";
  position: absolute; left: 24px; right: 24px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ── Modal — uniform centered layout across all groups ─── */
.modal-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 56px !important;
}
.modal-eyebrow {
  text-align: center;
  letter-spacing: 5px !important;
  font-size: 11.5px !important;
  margin-bottom: 18px !important;
}
.modal-title {
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.6px !important;
  margin: 0 auto 16px !important;
  max-width: 22ch;
  color: var(--text) !important;
}
.modal-title .bilingual-en {
  display: block;
  margin-top: 12px;
  font-size: 0.48em !important;
  color: var(--gold-2) !important;
  letter-spacing: 1px;
}
.modal-subtitle {
  text-align: center;
  font-size: 18px !important;
  color: var(--gold-2) !important;
  margin: 0 auto 20px !important;
}
.modal-meta {
  justify-content: center;
  font-size: 12.5px !important;
  letter-spacing: 0.4px;
  padding-bottom: 18px !important;
  margin-bottom: 18px !important;
}
.modal-actions {
  justify-content: center;
  margin-bottom: 22px !important;
}
.modal-lang-bar {
  justify-content: center;
  margin: 4px auto 24px !important;
}

/* Body: same column width as title so left/right rag is uniform across all groups */
.modal-body {
  max-width: 64ch;
  margin: 0 auto !important;
  font-size: 16.5px !important;
  line-height: 1.65 !important;
  color: var(--text-2) !important;
}
.modal-body p { margin: 0 0 1em !important; }
.modal-body p:first-of-type::first-letter {
  font-size: 3.8em !important;
  padding: 4px 12px 0 0 !important;
  line-height: 0.85 !important;
}

/* Inline figures stay centered with the body column */
.inline-fig { max-width: 100%; margin-left: auto; margin-right: auto; }
.inline-fig.fig-wide { width: 100%; }
.inline-fig.fig-square { max-width: 70%; }
.inline-fig.fig-tall { float: none; max-width: 60%; margin: 22px auto !important; }

.modal-pending {
  max-width: 64ch;
  margin: 0 auto !important;
  text-align: center;
}

/* ── Donation strip — real artifact photos under the milestone block ─── */
.donation-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
@media (max-width: 820px) { .donation-strip { grid-template-columns: 1fr 1fr; } }
.donation-tile {
  background: var(--bg-card-2) center/cover no-repeat;
  border-radius: 10px;
  border: 1px solid var(--gold-dim);
  cursor: zoom-in;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  min-height: 180px;
}
.donation-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

/* Books with low-aspect cover (book spines or thumbnails) show full image */
.wall-thumb { object-fit: cover; }

/* Admin panel — books that fell back to manual search notes */
.note-pill {
  display: inline-block;
  font-family: var(--capitals);
  letter-spacing: 2px;
  font-size: 10px;
  color: var(--gold);
  background: rgba(214,168,90,0.10);
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  padding: 2px 10px;
  margin-top: 6px;
}

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 300; }
.lightbox.hidden { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(6px); cursor: zoom-out; }
.lightbox-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 92vw; max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  background: #000;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px; z-index: 2;
  font-size: 38px; color: #fff; line-height: 1;
  background: rgba(0,0,0,0.4);
  border-radius: 50%; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--claret); }
body.lightbox-open { overflow: hidden; }

/* ── Per-chapter background photo (stays fixed as user scrolls) ─── */
.wall-group {
  position: relative;
  padding: 28px 22px;
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
}
.wall-group::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bg-image, none) center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.18;
  z-index: -2;
  filter: saturate(1.1) brightness(0.8);
}
.wall-group::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(11,13,18,0.40) 0%,
    rgba(11,13,18,0.78) 65%,
    rgba(11,13,18,0.92) 100%);
  z-index: -1;
}

/* Reflow meta to overlay nicely on the new background */
.wall-group-meta {
  background: rgba(11,13,18,0.65);
  border-color: var(--gold);
  backdrop-filter: blur(8px);
}

/* Wall items get bigger, more readable text + tighter row layout */
.wall-items { gap: 4px 24px; padding-top: 14px; }
.wall-item { padding: 12px 4px; gap: 14px; }
.wall-item-title { font-size: 17px !important; line-height: 1.35 !important; }
.wall-item-meta  { font-size: 13px !important; color: var(--gold-2) !important; }
.wall-item-cat   { font-size: 11px !important; color: var(--gold) !important; }
.wall-thumb      { width: 72px; height: 72px; border-radius: 8px; flex-shrink: 0; }

/* Make group-meta breathe at the same width as content for visual rhythm */
@media (min-width: 821px) {
  .wall-group-meta { width: 260px; padding: 22px 22px; }
  .wall-group { padding: 36px 28px; }
}

/* Mobile: center everything important */
@media (max-width: 820px) {
  .wall-head { text-align: center; justify-content: center; }
  .wall-head::after { left: 50%; transform: translateX(-50%); }
  .wall-filter { justify-content: center; }
  .wall-group { padding: 22px 14px; }
  .wall-group-meta {
    text-align: center;
    padding: 18px 18px;
  }
  .wall-group-meta .wall-group-num,
  .wall-group-meta .wall-group-title,
  .wall-group-meta .wall-group-title-en,
  .wall-group-meta .wall-group-pub,
  .wall-group-meta .wall-group-count { text-align: center; }
  .wall-item { grid-template-columns: 1fr; text-align: center; }
  .wall-item .wall-thumb { margin: 0 auto; }
  .hero-grid { text-align: center; }
  .hero-bio { margin-left: auto; margin-right: auto; }
  .hero-eyebrow { justify-content: center; }
  .hero-stats-inline { justify-content: center; }
}

/* Hero portrait — re-confirm visibility (ensure it stays visible after recent changes) */
.portrait-frame.has-photo {
  background-color: transparent;
  background-position: center;
  background-size: cover;
}

/* ── Wall item polish (continue pass) ──────────────────────────
   - Thumbnail series number gets a real badge treatment
   - Story titles a notch bigger
*/
.wall-thumb {
  width: 78px; height: 78px;
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--gold-dim);
}
.wall-thumb .wall-thumb-num {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--display); font-style: italic;
  font-weight: 700;
  font-size: 16px;
  padding: 2px 9px;
  border-radius: 999px;
  min-width: 28px; text-align: center;
  border: 2px solid var(--bg-0);
  box-shadow: 0 4px 10px rgba(0,0,0,0.45);
  text-shadow: none;
  letter-spacing: 0;
  line-height: 1.15;
}
.wall-item-title { font-size: 18.5px !important; line-height: 1.35 !important; letter-spacing: -0.3px; }
.wall-item-cat   { font-size: 11.5px !important; letter-spacing: 3px; }
.wall-item-meta  { font-size: 13.5px !important; }
.wall-item       { gap: 18px; }

/* ── Revert badge, bigger thumb, tighter side padding ───── */
.wall-thumb {
  width: 104px; height: 104px;     /* was 78 — give photos real estate */
  border-radius: 10px;
  border: 1px solid var(--line);   /* subtle, not the loud gold edge */
}
.wall-thumb .wall-thumb-num {
  position: absolute;
  bottom: 4px; right: 6px;
  top: auto; left: auto;
  background: rgba(0,0,0,0.55);
  color: var(--paper);
  font-family: var(--display); font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  padding: 1px 6px;
  border-radius: 3px;
  border: 0;
  box-shadow: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  min-width: 0;
}

/* Wall-group padding shrinks so items column wins more space */
@media (min-width: 821px) {
  .wall-group { padding: 28px 16px; gap: 24px; }
  .wall-group-meta { width: 220px; }
}

/* Section + items gaps: tighter so each row sits closer to the next */
.wall-items { gap: 2px 22px; padding-top: 10px; }
.wall-item { padding: 10px 4px; gap: 16px; }
.wall-section, .legacy-section, .about-section { padding: 50px 22px; }

/* ── Fix thumb-text collision (grid column must match thumb width) ─── */
.wall-item {
  display: grid !important;
  grid-template-columns: 116px minmax(0, 1fr) !important;  /* matches 104px thumb + breathing */
  align-items: start;
  gap: 16px !important;
}
@media (max-width: 820px) {
  .wall-item { grid-template-columns: 1fr !important; }
  .wall-item .wall-thumb { margin: 0 auto; }
}
.wall-item-body { min-width: 0; }   /* let title wrap inside its column */

/* ── Donation strip → horizontal swipe/drag carousel ─────────────── */
.legacy-section { position: relative; }
.donation-strip {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px;
  margin-top: 24px;
  padding-bottom: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-color: var(--gold-dim) transparent;
}
.donation-strip.dragging { cursor: grabbing; }
.donation-strip::-webkit-scrollbar { height: 6px; }
.donation-strip::-webkit-scrollbar-track { background: transparent; }
.donation-strip::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 999px; }
.donation-tile {
  flex: 0 0 280px !important;
  height: 280px !important;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  border: 1px solid var(--gold-dim);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.15s ease;
  box-shadow: 0 8px 22px rgba(0,0,0,0.4);
}
.donation-tile:hover { transform: translateY(-3px); }
@media (max-width: 720px) {
  .donation-tile { flex: 0 0 220px !important; height: 220px !important; }
}

/* ── About: photo collage + cleaner typography ───────────────────── */
.about-section { max-width: 1080px; }
.about-collage {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin: 0 auto 40px;
  max-width: 880px;
  aspect-ratio: 16/9;
}
@media (max-width: 720px) {
  .about-collage {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4/3;
  }
}
.about-collage .col-tile {
  border-radius: 8px;
  background-size: cover; background-position: center;
  border: 1px solid var(--gold-dim);
  cursor: zoom-in;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.about-collage .col-tile.big {
  grid-row: span 2;
}
.about-body { font-size: 17.5px; }

/* ── Shimmering gold — emphasis fonts (stats + chapter labels) ─── */
@keyframes gold-shimmer {
  0%   { background-position:   0% center; }
  100% { background-position: 200% center; }
}
.shimmer-gold {
  background: linear-gradient(
    90deg,
    var(--gold-dim) 0%,
    var(--gold) 25%,
    #fff2c6 45%,
    var(--gold-2) 65%,
    var(--gold) 85%,
    var(--gold-dim) 100%
  );
  background-size: 220% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4.5s linear infinite;
  filter: drop-shadow(0 1px 6px rgba(214,168,90,0.40));
}

/* Hero stats — bigger, shinier */
.hero-stats-inline { font-size: 12px !important; letter-spacing: 4px !important; }
.hero-stats-inline .stat {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-right: 6px;
}
.hero-stats-inline .stat b {
  font-family: var(--display); font-style: italic;
  font-weight: 700 !important;
  font-size: 26px !important;       /* was 14 */
  letter-spacing: 0;
  background: linear-gradient(
    90deg,
    var(--gold-dim), var(--gold), #fff2c6, var(--gold-2), var(--gold), var(--gold-dim)
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 4.5s linear infinite;
  filter: drop-shadow(0 1px 6px rgba(214,168,90,0.45));
}

/* Chapter section title (e.g. "한 사람의 평생, 한 자리에서 펼치다") */
.wall-title {
  font-weight: 600 !important;
  background: linear-gradient(90deg, var(--gold-2), #fff2c6, var(--gold-2), var(--gold-dim));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 6s linear infinite;
  filter: drop-shadow(0 2px 10px rgba(214,168,90,0.35));
}

/* Wall pill */
.wall-pill {
  font-weight: 700 !important;
  letter-spacing: 6px !important;
  font-size: 12px !important;
  color: var(--gold-2);
  border-color: var(--gold);
  text-shadow: 0 0 12px rgba(214,168,90,0.35);
}

/* Chapter group numbering */
.wall-group-num {
  font-size: 44px !important;
  background: linear-gradient(180deg, #fff2c6 0%, var(--gold) 60%, var(--gold-dim) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(214,168,90,0.40));
}

/* English chapter labels — Armenia · The Apostolic Land, etc. */
.wall-group-title-en {
  font-style: italic;
  font-weight: 600 !important;
  font-size: 19px !important;        /* was 16 */
  letter-spacing: -0.2px;
  background: linear-gradient(
    90deg, var(--gold-dim), var(--gold-2), #fff2c6, var(--gold-2), var(--gold-dim)
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 5s linear infinite;
  filter: drop-shadow(0 1px 4px rgba(214,168,90,0.35));
  margin: 6px 0 14px !important;
}

/* Brand mark in topbar — small shimmer too */
.brand-mark { animation: gold-shimmer 5s linear infinite;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), #fff2c6, var(--gold), var(--gold-dim));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ════════════════════════════════════════════════════════════
   FATHER'S DAY FINAL PASS
   ════════════════════════════════════════════════════════════ */

/* —— Tighter section + chapter rhythm —— */
.wall-section, .legacy-section, .about-section { padding: 36px 22px !important; }
.wall-groups { gap: 22px !important; }
.wall-section .wall-group { padding: 22px 18px !important; gap: 18px !important; margin: 0 !important; }
@media (min-width: 821px) {
  .wall-section .wall-group { padding: 24px 22px !important; gap: 22px !important; }
}

/* —— Chapter bg photo: more vivid (desktop only) —— */
@media (min-width: 721px) {
  .wall-group::before {
    opacity: 0.42 !important;
    filter: saturate(1.3) brightness(0.82) contrast(1.05) !important;
  }
  .wall-group::after {
    background: linear-gradient(180deg,
      rgba(11,13,18,0.55) 0%,
      rgba(11,13,18,0.72) 100%) !important;
  }
}

/* —— Face-aware centering (faces tend to be upper third) —— */
.wall-thumb, .donation-tile, .col-tile,
.modal-hero, .about-finale-photo { background-position: center 28% !important; }

/* —— Wall thumb: gold edge —— */
.wall-thumb {
  border: 2px solid var(--gold-dim) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* —— Per-work date: gold shimmer —— */
.wall-item-date, .modal-pubdate {
  font-family: var(--display); font-style: italic; font-weight: 600;
  font-size: 12.5px; letter-spacing: 1px;
  display: inline-block; margin-top: 4px;
  background: linear-gradient(90deg,
    var(--gold-dim), var(--gold), #fff2c6, var(--gold-2), var(--gold-dim));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gold-shimmer 5s linear infinite;
  filter: drop-shadow(0 1px 4px rgba(214,168,90,0.30));
}
.modal-pubdate { font-size: 14px; margin-right: 14px; }
.modal-translation-meta {
  font-size: 12.5px; color: var(--gold-2); font-style: italic;
  margin: 4px 0 10px; letter-spacing: 0.5px;
}

/* —— Hero stats —— */
.hero-stats-inline {
  display: inline-flex; flex-wrap: wrap; gap: 10px 16px;
  margin-left: 10px; vertical-align: middle;
}
.hero-stats-inline .stat.no-count {
  font-family: var(--capitals);
  letter-spacing: 4px; font-size: 11px;
  color: var(--gold-2);
  border: 1px solid var(--gold-dim);
  padding: 5px 12px;
  border-radius: 999px;
  text-shadow: 0 0 8px rgba(214,168,90,0.3);
  background: rgba(0,0,0,0.15);
}

/* —— Modal hero: breathing room + thick gold border + rounded —— */
.modal-hero {
  margin: 22px 22px 0 !important;
  width: calc(100% - 44px) !important;
  border-radius: 16px !important;
  border: 3px solid var(--gold) !important;
  box-shadow:
    0 0 0 1px var(--gold-dim) inset,
    0 16px 48px rgba(0,0,0,0.55),
    0 0 28px rgba(214,168,90,0.22);
  aspect-ratio: 16/9 !important;
  background-position: center 28% !important;
}
.modal-hero::after {
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(11,13,18,0.32)) !important;
}

/* —— Inline figures: fill body column —— */
.inline-fig          { max-width: 100% !important; margin: 22px auto !important; float: none !important; }
.inline-fig.fig-wide,
.inline-fig.fig-square,
.inline-fig.fig-tall { width: 100% !important; max-width: 100% !important; }
.inline-fig img      { width: 100% !important; height: auto !important; }

/* —— Donation carousel: variable heights (tall stays tall) —— */
.donation-strip { align-items: flex-start !important; padding: 8px 0 18px !important; }
.donation-tile {
  flex: 0 0 auto !important;
  width: 280px !important;
  height: auto !important;
  aspect-ratio: var(--ar, 1) !important;
  background-position: center 28% !important;
  min-height: 200px;
}
.donation-tile.tall { width: 220px !important; }
.donation-tile.wide { width: 360px !important; }

/* —— About collage → horizontal slidable carousel —— */
.about-collage {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 8px 0 20px !important;
  max-width: 1080px !important;
  margin: 0 auto 22px !important;
  aspect-ratio: auto !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  scrollbar-color: var(--gold-dim) transparent;
}
.about-collage.dragging { cursor: grabbing; }
.about-collage::-webkit-scrollbar { height: 6px; }
.about-collage::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 999px; }
.about-collage .col-tile {
  flex: 0 0 auto !important;
  width: 320px !important;
  height: 380px !important;
  border-radius: 12px;
  border: 2px solid var(--gold-dim);
  scroll-snap-align: start;
  grid-row: auto !important;
  grid-column: auto !important;
  cursor: zoom-in;
  background-size: cover;
  background-position: center 28% !important;
}
.about-collage .col-tile.big  { width: 480px !important; height: 420px !important; }
.about-collage .col-tile.tall { width: 280px !important; height: 420px !important; }
.about-collage .col-tile.wide { width: 480px !important; height: 320px !important; }

/* —— About finale (closing photo) —— */
.about-finale-photo {
  width: 100%; max-width: 880px;
  margin: 26px auto 8px;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center 28%;
  border-radius: 16px;
  border: 3px solid var(--gold);
  box-shadow:
    0 0 0 1px var(--gold-dim) inset,
    0 16px 48px rgba(0,0,0,0.5),
    0 0 28px rgba(214,168,90,0.22);
  cursor: zoom-in;
  position: relative;
}
.about-finale-photo::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(11,13,18,0.42));
  pointer-events: none;
}
.about-finale-cap {
  text-align: center;
  font-family: var(--display); font-style: italic;
  font-size: 13.5px; color: var(--gold-2);
  margin: 10px auto 24px;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════
   PHONE MODE (≤720px) — final overrides
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {

  /* Wall-head: pill on top line, title on next line, centered */
  .wall-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    padding-bottom: 18px !important;
    margin-bottom: 18px !important;
  }
  .wall-head .wall-pill   { align-self: center !important; }
  .wall-head .wall-title  { width: 100% !important; margin: 0 auto !important; }

  /* —— CHAPTER (wall-group) —— */
  .wall-section .wall-group {
    padding: 16px 10px !important;
    gap: 14px !important;
    border-radius: 14px !important;
  }
  /* KILL chapter bg photo on mobile — was overlapping with first wall-item.
     Use solid card background instead. */
  .wall-group::before { display: none !important; }
  .wall-group::after  { display: none !important; }
  .wall-section .wall-group {
    background: rgba(11,13,18,0.55) !important;
    border: 1px solid var(--gold-dim);
  }

  /* Group meta as a compact header band */
  .wall-section .wall-group .wall-group-meta {
    width: 100% !important;
    padding: 12px 14px !important;
    background: rgba(11,13,18,0.65) !important;
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    text-align: center !important;
  }
  .wall-group-num     { font-size: 28px !important; }
  .wall-group-title   { font-size: 17px !important; }
  .wall-group-title-en{ font-size: 13px !important; margin: 4px 0 6px !important; }
  .wall-group-pub,
  .wall-group-count   { font-size: 11px !important; }

  /* —— Wall items: LEFT photo · RIGHT text (BIG photos) —— */
  .wall-section .wall-group .wall-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding-top: 4px !important;
  }
  .wall-section .wall-group .wall-items .wall-item {
    display: grid !important;
    grid-template-columns: 50% minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 8px !important;
    text-align: left !important;
    align-items: stretch !important;
    background: rgba(11,13,18,0.45);
    border: 1px solid var(--gold-dim);
    border-radius: 12px;
  }
  .wall-section .wall-group .wall-items .wall-item .wall-thumb {
    width: 100% !important;
    height: 100% !important;
    min-height: 220px !important;       /* MUCH bigger */
    aspect-ratio: 3/4 !important;
    border-radius: 10px !important;
    border: 2px solid var(--gold-dim) !important;
    margin: 0 !important;
    background-position: center 28% !important;
  }
  .wall-section .wall-group .wall-items .wall-item .wall-thumb-num {
    bottom: 8px !important; right: 10px !important;
    font-size: 15px !important;
    padding: 3px 9px !important;
    background: rgba(0,0,0,0.7) !important;
  }
  .wall-section .wall-group .wall-items .wall-item-body {
    padding: 4px 4px 4px 0 !important;
    text-align: left !important;
    align-self: center !important;
  }
  .wall-section .wall-group .wall-items .wall-item-cat,
  .wall-section .wall-group .wall-items .wall-item-title,
  .wall-section .wall-group .wall-items .wall-item-meta,
  .wall-section .wall-group .wall-items .wall-item-date { text-align: left !important; }
  .wall-section .wall-group .wall-items .wall-item-title {
    font-size: 16px !important; line-height: 1.32 !important; font-weight: 700 !important;
    margin-top: 4px !important;
  }
  .wall-section .wall-group .wall-items .wall-item-meta {
    font-size: 12.5px !important; margin-top: 4px !important;
  }
  .wall-section .wall-group .wall-items .wall-item-cat {
    font-size: 10.5px !important; letter-spacing: 2.5px !important;
  }

  /* Modal hero: tighter margin, slimmer border, still rounded */
  .modal-hero {
    margin: 14px 14px 0 !important;
    width: calc(100% - 28px) !important;
    border-width: 2px !important;
    border-radius: 12px !important;
  }

  /* Donation carousel phone */
  .donation-tile      { width: 220px !important; }
  .donation-tile.tall { width: 180px !important; }
  .donation-tile.wide { width: 280px !important; }

  /* About collage phone */
  .about-collage .col-tile      { width: 260px !important; height: 320px !important; }
  .about-collage .col-tile.big  { width: 300px !important; height: 360px !important; }
  .about-collage .col-tile.tall { width: 230px !important; height: 360px !important; }
  .about-collage .col-tile.wide { width: 320px !important; height: 240px !important; }
}

/* ════════════════════════════════════════════════════════════
   PHONE MODE — kill empty space between topbar and 1st chapter
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .topbar { padding: 10px 16px !important; }
  .hero { padding-top: 14px !important; padding-bottom: 16px !important; }
  .wall-section { padding-top: 8px !important; padding-bottom: 24px !important; }
  .wall-section .wall-head {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding-bottom: 12px !important;
  }
  .wall-section .wall-filter { margin-top: 6px !important; }
  .wall-groups { gap: 14px !important; }
  .legacy-section, .about-section { padding-top: 22px !important; padding-bottom: 22px !important; }
}

/* ════════════════════════════════════════════════════════════
   PHONE MODE — chapter meta sticks to top + uniform card widths
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Wall-group: no inner top padding so meta sits flush with top */
  .wall-section .wall-group {
    padding-top: 0 !important;
    overflow: hidden;
  }
  /* Chapter meta band — full width, flat-top corners, glued to top */
  .wall-section .wall-group .wall-group-meta {
    width: calc(100% + 20px) !important;
    margin: 0 -10px 14px !important;   /* bleed out to container edges, gap to items */
    padding: 14px 16px !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 0 !important;
  }
  /* Items list — uniform width, consistent vertical spacing */
  .wall-section .wall-group .wall-items {
    width: 100% !important;
    align-items: stretch !important;
  }
  .wall-section .wall-group .wall-items .wall-item {
    width: 100% !important;
    grid-template-columns: 45% minmax(0, 1fr) !important;  /* same ratio every row */
    min-height: 260px !important;                            /* uniform minimum */
    padding: 10px !important;
    box-sizing: border-box !important;
  }
  .wall-section .wall-group .wall-items .wall-item .wall-thumb {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3/4 !important;
    min-height: 240px !important;
  }
  /* Bigger title per user request */
  .wall-section .wall-group .wall-items .wall-item-title {
    font-size: 18px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
  }
  .wall-section .wall-group .wall-items .wall-item-cat {
    font-size: 11px !important; letter-spacing: 3px !important;
  }
  .wall-section .wall-group .wall-items .wall-item-meta {
    font-size: 13px !important;
  }
  .wall-section .wall-group .wall-items .wall-item-date {
    font-size: 13px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   PHONE MODE — clean stack, no overlap on chapter meta
   ════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Wall-group: clean padding, no overflow tricks */
  .wall-section .wall-group {
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
  }
  /* Chapter meta — fully self-contained, normal flow, with bottom gap */
  .wall-section .wall-group .wall-group-meta {
    position: static !important;
    width: 100% !important;
    margin: 0 0 18px !important;
    padding: 16px 18px !important;
    background: rgba(11,13,18,0.7) !important;
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-dim) !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
  }
  /* Items list — sits AFTER meta, clear gap, no overlap */
  .wall-section .wall-group .wall-items {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  .wall-section .wall-group .wall-items .wall-item {
    width: 100% !important;
    margin: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
  }
  .wall-section .wall-group .wall-items .wall-item .wall-thumb {
    position: relative !important;
    transform: none !important;
    margin: 0 !important;
  }
  /* On hover, no transform on mobile (sticky transforms can confuse layout) */
  .wall-section .wall-group .wall-items .wall-item:hover { padding-left: 0 !important; }
  .wall-section .wall-group .wall-items .wall-item:hover .wall-thumb { transform: none !important; }
}

/* ════════════════════════════════════════════════════════════
   PHONE — KILL position:sticky on chapter meta (root cause of overlap)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .wall-group-meta,
  .wall-section .wall-group .wall-group-meta {
    position: static !important;
    top: auto !important;
    align-self: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   PHONE/TABLET — wall-group becomes simple block stack
   (eliminates any grid-row collision between meta and items)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  /* Force the chapter into a simple block stack — meta on top,
     items below, with a real gap. No grid, no sticky, no overlay. */
  .wall-section .wall-group {
    display: block !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
  }
  /* Chapter bg photo OFF up to tablet width — was the visual overlap */
  .wall-section .wall-group::before { display: none !important; content: none !important; }
  .wall-section .wall-group::after  { display: none !important; content: none !important; }

  .wall-section .wall-group .wall-group-meta {
    position: static !important;
    display: block !important;
    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 16px 18px !important;
    background: rgba(11,13,18,0.7) !important;
    border: 1px solid var(--gold-dim) !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .wall-section .wall-group .wall-items {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;          /* kill the border-top line */
    border-top: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    position: relative !important;
    z-index: 1;
  }
}

/* ════════════════════════════════════════════════════════════
   PORTRAIT — meta box gets 20% taller, z-index on top, hard gap
   ════════════════════════════════════════════════════════════ */
@media (max-width: 820px) and (orientation: portrait), (max-width: 720px) {
  /* Meta box is now ABSOLUTELY ON TOP — nothing can slide over it */
  .wall-section .wall-group .wall-group-meta {
    position: relative !important;
    z-index: 50 !important;
    min-height: 200px !important;            /* ~20% taller */
    padding: 22px 20px 26px !important;       /* more breathing room */
    margin: 0 0 32px !important;              /* big clear gap to first item */
    box-shadow: 0 6px 18px rgba(0,0,0,0.45);
    background: rgba(11,13,18,0.85) !important;  /* solid enough nothing shows through */
  }
  /* Wall items live in their own layer beneath the meta */
  .wall-section .wall-group .wall-items {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
  }
  .wall-section .wall-group .wall-items .wall-item {
    position: relative !important;
    z-index: 1 !important;
  }
  .wall-section .wall-group .wall-items .wall-item .wall-thumb {
    position: relative !important;
    z-index: 1 !important;
  }
}

/* ════════════════════════════════════════════════════════════
   BIGGER + SHINIER — titles, subtitle, date all scale up
   ════════════════════════════════════════════════════════════ */

/* Hero stats BOOKS/PRESS pill — shrink to match the inline rhythm */
.hero-stats-inline .stat.no-count {
  font-size: 9.5px !important;
  letter-spacing: 3px !important;
  padding: 3px 9px !important;
  border-radius: 999px;
  line-height: 1.4;
}

/* New: subhead row above each title (cat · date) */
.wall-item-subhead {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.wall-item-subhead .wall-item-cat   { margin: 0 !important; }
.wall-item-subhead .wall-item-date  { margin: 0 !important; }

/* Title — shimmering gold-cream gradient on EVERY card */
.wall-item-title {
  font-family: var(--kr) !important;
  font-weight: 800 !important;
  background: linear-gradient(90deg,
    var(--text), #fff2c6, var(--gold-2), var(--text), #fff2c6) !important;
  background-size: 220% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 7s linear infinite;
  filter: drop-shadow(0 1px 4px rgba(214,168,90,0.30));
  letter-spacing: -0.3px !important;
}

/* ──── DESKTOP: bump sizes ──── */
@media (min-width: 821px) {
  .wall-item-title { font-size: 24px !important; line-height: 1.32 !important; }
  .wall-item-cat   { font-size: 13px !important; letter-spacing: 3.5px !important; }
  .wall-item-date  { font-size: 15px !important; }
  .wall-item-meta  { font-size: 15px !important; }
}

/* ──── PHONE/TABLET: scale text 1.5-2x ──── */
@media (max-width: 820px) {
  .wall-section .wall-group .wall-items .wall-item-subhead {
    gap: 10px;
    margin-bottom: 6px;
  }
  .wall-section .wall-group .wall-items .wall-item-cat {
    font-size: 13px !important;
    letter-spacing: 3.5px !important;
    color: var(--gold-2) !important;
    font-weight: 600;
  }
  .wall-section .wall-group .wall-items .wall-item-date {
    font-size: 14.5px !important;
    letter-spacing: 1.2px;
  }
  .wall-section .wall-group .wall-items .wall-item-title {
    font-size: 22px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
    margin: 4px 0 6px !important;
  }
  .wall-section .wall-group .wall-items .wall-item-meta {
    font-size: 13.5px !important;
    margin-top: 4px !important;
    color: var(--gold-2) !important;
    font-style: italic;
  }
}

/* Tiny tweak: hero-bio & tagline bump up a notch on mobile */
@media (max-width: 720px) {
  .hero-bio { font-size: 15.5px !important; line-height: 1.65; }
  .hero-tagline { font-size: 14.5px !important; }
}

/* ════════════════════════════════════════════════════════════
   PROFESSIONAL PHOTO LAYOUTS — bigger, ratio-preserving, editorial
   ════════════════════════════════════════════════════════════ */

/* ─── About collage on DESKTOP: magazine mosaic grid ─── */
@media (min-width: 821px) {
  .about-collage {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    grid-auto-rows: 130px !important;
    grid-auto-flow: dense !important;
    gap: 14px !important;
    overflow: visible !important;
    padding: 16px 0 28px !important;
    cursor: default !important;
    max-width: 1100px !important;
    margin: 0 auto 32px !important;
    scroll-snap-type: none !important;
  }
  .about-collage .col-tile {
    width: auto !important;
    height: 100% !important;
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    cursor: zoom-in;
  }
  .about-collage .col-tile.big {
    grid-column: span 3 !important;
    grid-row: span 3 !important;
  }
  .about-collage .col-tile.tall {
    grid-column: span 2 !important;
    grid-row: span 3 !important;
  }
  .about-collage .col-tile.wide {
    grid-column: span 4 !important;
    grid-row: span 2 !important;
  }
}

/* ─── Donation strip: bigger tiles, editorial proportions ─── */
.donation-strip {
  gap: 16px !important;
  padding: 12px 0 22px !important;
  scroll-padding-left: 8px;
}
.donation-tile {
  width: 380px !important;
  border-radius: 14px !important;
  border-width: 2px !important;
  box-shadow:
    0 0 0 1px var(--gold-dim) inset,
    0 14px 32px rgba(0,0,0,0.45),
    0 0 18px rgba(214,168,90,0.15) !important;
}
.donation-tile.tall { width: 300px !important; }
.donation-tile.wide { width: 480px !important; }
@media (max-width: 720px) {
  .donation-tile { width: 280px !important; min-height: 280px !important; }
  .donation-tile.tall { width: 220px !important; }
  .donation-tile.wide { width: 340px !important; }
}

/* ─── About carousel on MOBILE — bigger ─── */
@media (max-width: 820px) {
  .about-collage .col-tile      { width: 320px !important; height: 380px !important; }
  .about-collage .col-tile.big  { width: 380px !important; height: 420px !important; }
  .about-collage .col-tile.tall { width: 280px !important; height: 420px !important; }
  .about-collage .col-tile.wide { width: 400px !important; height: 280px !important; }
}
@media (max-width: 480px) {
  .about-collage .col-tile      { width: 280px !important; height: 340px !important; }
  .about-collage .col-tile.big  { width: 320px !important; height: 380px !important; }
  .about-collage .col-tile.tall { width: 240px !important; height: 380px !important; }
  .about-collage .col-tile.wide { width: 320px !important; height: 240px !important; }
}

/* All photo tiles: subtle hover lift + gold border glow */
.donation-tile, .about-collage .col-tile {
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.donation-tile:hover, .about-collage .col-tile:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 0 0 1px var(--gold) inset,
    0 18px 40px rgba(0,0,0,0.55),
    0 0 26px rgba(214,168,90,0.30) !important;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP — PHOTOS MUCH BIGGER (web view is the showcase!)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  /* About mosaic — taller rows + wider mosaic, fill the viewport */
  .about-section { max-width: 1400px !important; padding: 36px 32px !important; }
  .about-collage {
    max-width: 1320px !important;
    grid-template-columns: repeat(6, 1fr) !important;
    grid-auto-rows: 200px !important;          /* was 130 → 200 */
    gap: 18px !important;
    padding: 18px 0 34px !important;
  }
  .about-collage .col-tile {
    grid-column: span 2 !important;
    grid-row: span 2 !important;                /* default 2×2 = ~440×400 */
  }
  .about-collage .col-tile.big {
    grid-column: span 4 !important;             /* HUGE feature tile */
    grid-row: span 3 !important;                /* ~880 × 600 */
  }
  .about-collage .col-tile.tall {
    grid-column: span 2 !important;
    grid-row: span 3 !important;                /* ~440 × 600 */
  }
  .about-collage .col-tile.wide {
    grid-column: span 4 !important;
    grid-row: span 2 !important;                /* ~880 × 400 */
  }

  /* Donation strip — tiles much bigger on desktop */
  .legacy-section { max-width: 1400px !important; padding: 36px 32px !important; }
  .donation-strip {
    gap: 22px !important;
    padding: 16px 0 28px !important;
  }
  .donation-tile {
    width: 520px !important;                    /* was 380 → 520 */
    min-height: 380px !important;
  }
  .donation-tile.tall { width: 400px !important; min-height: 560px !important; }
  .donation-tile.wide { width: 680px !important; }

  /* Wall section also wider so chapters breathe */
  .wall-section { max-width: 1400px !important; padding: 36px 32px !important; }

  /* Wall thumbnail bigger on desktop too */
  .wall-thumb { width: 140px !important; height: 140px !important; }
  .wall-item { grid-template-columns: 156px minmax(0, 1fr) !important; gap: 22px !important; }
  .wall-item-title { font-size: 26px !important; line-height: 1.32 !important; }
  .wall-item-cat { font-size: 14px !important; }
  .wall-item-date { font-size: 16px !important; }
  .wall-item-meta { font-size: 16px !important; }

  /* Modal hero — bigger on desktop too */
  .modal-card { max-width: 1080px !important; }
  .modal-hero { aspect-ratio: 16/9 !important; min-height: 540px !important; }
}

/* ════════════════════════════════════════════════════════════

/* ════════════════════════════════════════════════════════════
   PER-CHAPTER ARCHETYPES — different design per content type
   Each archetype tunes layout/photo treatment to suit the
   number of items + intent + photo style of that chapter.
   ════════════════════════════════════════════════════════════ */

/* —— Desktop sane defaults (replaces all the NUCLEAR overrides) —— */
@media (min-width: 821px) {
  body .wall-section { max-width: 1400px !important; padding: 40px 32px !important; }
  body .legacy-section, body .about-section {
    max-width: 1400px !important; padding: 40px 32px !important;
  }
  /* Wall thumb default at sensible size on desktop */
  body .wall-section .wall-thumb {
    width: clamp(140px, 13vw, 200px) !important;
    height: clamp(140px, 13vw, 200px) !important;
    border-radius: 14px !important;
  }
  body .wall-section .wall-item {
    grid-template-columns: clamp(160px, 14vw, 220px) minmax(0, 1fr) !important;
    gap: 28px !important;
  }
  /* Hero portrait sane */
  body .hero .hero-portrait .portrait-frame {
    width: clamp(280px, 26vw, 420px) !important;
    height: clamp(360px, 32vw, 520px) !important;
  }
  /* About collage back to clean magazine mosaic */
  body .about-section .about-collage {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-auto-rows: clamp(140px, 14vw, 220px) !important;
    grid-auto-flow: dense !important;
    gap: 16px !important;
    overflow: visible !important;
    max-width: 1340px !important;
    margin: 0 auto 32px !important;
    padding: 16px 0 28px !important;
    cursor: default !important;
  }
  body .about-section .about-collage .col-tile {
    width: 100% !important; height: 100% !important;
    grid-column: span 2 !important; grid-row: span 2 !important;
    border-radius: 14px;
  }
  body .about-section .about-collage .col-tile.big {
    grid-column: span 4 !important; grid-row: span 3 !important;
  }
  body .about-section .about-collage .col-tile.tall {
    grid-column: span 2 !important; grid-row: span 3 !important;
  }
  body .about-section .about-collage .col-tile.wide {
    grid-column: span 4 !important; grid-row: span 2 !important;
  }
  /* Donation back to clean sized tiles (no 95vw monsters) */
  body .legacy-section .donation-strip {
    width: 100% !important; max-width: 1400px !important;
    margin: 0 auto !important; padding: 14px 0 24px !important;
    gap: 18px !important;
  }
  body .legacy-section .donation-strip .donation-tile {
    width: clamp(320px, 32vw, 480px) !important;
    min-height: clamp(280px, 28vw, 420px) !important;
    flex: 0 0 auto !important;
    border-radius: 14px !important;
  }
  body .legacy-section .donation-strip .donation-tile.tall {
    width: clamp(260px, 24vw, 360px) !important;
    min-height: clamp(380px, 36vw, 540px) !important;
  }
  body .legacy-section .donation-strip .donation-tile.wide {
    width: clamp(420px, 42vw, 640px) !important;
  }
}

/* ─────────── EXPEDITION: Armenia, Georgia, Scotland ───────────
   Travelogue. Photo-as-cover with title overlay at bottom.
   2-column grid on desktop, single column on mobile.
   ────────────────────────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--expedition .wall-items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
  body .chapter-style--expedition .wall-item {
    display: block !important;
    grid-template-columns: none !important;
    position: relative;
    height: 460px !important;
    padding: 0 !important;
    border-radius: 18px !important;
    overflow: hidden;
    border: 2px solid var(--gold-dim);
  }
  body .chapter-style--expedition .wall-thumb {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    inset: 0 !important;
  }
  body .chapter-style--expedition .wall-item-body {
    position: absolute !important;
    bottom: 0; left: 0; right: 0;
    padding: 26px 28px 22px !important;
    background: linear-gradient(180deg, transparent 0%, rgba(11,13,18,0.55) 35%, rgba(11,13,18,0.92) 100%);
    z-index: 2;
  }
  body .chapter-style--expedition .wall-item-subhead { margin-bottom: 8px; }
  body .chapter-style--expedition .wall-item-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
  body .chapter-style--expedition .wall-thumb .wall-thumb-num {
    top: 14px !important; right: 14px !important;
    bottom: auto !important; left: auto !important;
    font-size: 18px !important;
    padding: 4px 12px !important;
    background: rgba(0,0,0,0.65) !important;
    border: 1px solid var(--gold) !important;
  }
}

/* ─────────── EXPEDITION-DARK: Ani (ruins) ───────────
   Like expedition but darker overlay + B&W-ish photo treatment.
   ──────────────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--expedition-dark .wall-items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
  body .chapter-style--expedition-dark .wall-item {
    display: block !important;
    position: relative;
    height: 460px !important;
    padding: 0 !important;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--gold-dim);
  }
  body .chapter-style--expedition-dark .wall-thumb {
    width: 100% !important; height: 100% !important;
    position: absolute; inset: 0;
    border-radius: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    filter: saturate(0.7) brightness(0.85) contrast(1.1);
  }
  body .chapter-style--expedition-dark .wall-item-body {
    position: absolute !important;
    bottom: 0; left: 0; right: 0;
    padding: 28px !important;
    background: linear-gradient(180deg, transparent, rgba(11,13,18,0.95));
    z-index: 2;
  }
  body .chapter-style--expedition-dark .wall-item-title {
    font-size: 24px !important;
  }
}

/* ─────────── MEMORIAL: Genocide ───────────
   Solemn. Narrow column. Muted photos. More text breathing room.
   ─────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--memorial .wall-items {
    max-width: 820px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }
  body .chapter-style--memorial .wall-item {
    display: grid !important;
    grid-template-columns: 200px minmax(0, 1fr) !important;
    gap: 26px !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid var(--line);
  }
  body .chapter-style--memorial .wall-thumb {
    width: 200px !important; height: 200px !important;
    filter: grayscale(0.6) brightness(0.85);
  }
  body .chapter-style--memorial .wall-item-title {
    font-size: 21px !important; line-height: 1.4 !important;
  }
}

/* ─────────── REPORTAGE: Ukraine ───────────
   Emergency newsletter feel — red accent line, urgent feel.
   ────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--reportage .wall-items {
    max-width: 920px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  body .chapter-style--reportage .wall-item {
    display: grid !important;
    grid-template-columns: 220px minmax(0, 1fr) !important;
    gap: 24px !important;
    padding: 14px 16px !important;
    border-left: 3px solid var(--claret) !important;
    background: rgba(185,76,76,0.05);
    border-radius: 0 12px 12px 0;
  }
  body .chapter-style--reportage .wall-thumb {
    width: 220px !important; height: 180px !important;
  }
  body .chapter-style--reportage .wall-item-cat {
    color: var(--claret) !important;
    text-transform: uppercase;
  }
}

/* ─────────── BIOGRAPHY: Drew, Davis, Tate, Honam ───────────
   Research dossier — clean academic catalog. Items in a list,
   small portrait thumb left, dense bio text right. Date prominent.
   ────────────────────────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--biography .wall-items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px 32px !important;
  }
  body .chapter-style--biography .wall-item {
    grid-template-columns: 140px minmax(0, 1fr) !important;
    gap: 18px !important;
    padding: 14px 12px !important;
    border-left: 2px solid var(--gold-dim);
    border-radius: 0 10px 10px 0;
    background: rgba(11,13,18,0.35);
  }
  body .chapter-style--biography .wall-thumb {
    width: 140px !important; height: 180px !important;
    aspect-ratio: auto !important;
  }
  body .chapter-style--biography .wall-item-title {
    font-size: 19px !important; line-height: 1.32 !important;
  }
  body .chapter-style--biography .wall-item-date {
    color: var(--gold-2) !important;
    background: rgba(214,168,90,0.12);
    padding: 2px 8px;
    border-radius: 4px;
  }
}

/* ─────────── COMMENTARY: America, Interview ───────────
   Text-first op-ed style. Small thumb, big bold title.
   ────────────────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--commentary .wall-items {
    max-width: 960px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }
  body .chapter-style--commentary .wall-item {
    grid-template-columns: 100px minmax(0, 1fr) !important;
    gap: 20px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid var(--line);
  }
  body .chapter-style--commentary .wall-thumb {
    width: 100px !important; height: 100px !important;
  }
  body .chapter-style--commentary .wall-item-title {
    font-size: 22px !important; line-height: 1.3 !important;
    font-weight: 800 !important;
  }
}

/* ─────────── GALLERY: Books ───────────
   Book covers as portrait tiles in a grid.
   ─────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--gallery .wall-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
    gap: 28px !important;
    justify-content: center;
  }
  body .chapter-style--gallery .wall-item {
    display: block !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    text-align: center;
  }
  body .chapter-style--gallery .wall-thumb {
    width: 100% !important;
    aspect-ratio: 3/4.4 !important;       /* book cover proportions */
    height: auto !important;
    border-radius: 6px !important;
    border: 2px solid var(--gold-dim);
    box-shadow: 0 18px 36px rgba(0,0,0,0.5);
  }
  body .chapter-style--gallery .wall-item-body {
    text-align: center;
    padding-top: 14px !important;
  }
  body .chapter-style--gallery .wall-item-title {
    font-size: 18px !important;
  }
}

/* ─────────── PRESS: News mentions ───────────
   Dense thumbnail wall.
   ──────────────────────────────────────────── */
@media (min-width: 821px) {
  body .chapter-style--press .wall-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 16px !important;
  }
  body .chapter-style--press .wall-item {
    display: block !important;
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-dim);
    background: rgba(11,13,18,0.5);
  }
  body .chapter-style--press .wall-thumb {
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    height: auto !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--gold-dim) !important;
  }
  body .chapter-style--press .wall-item-body {
    padding: 14px 16px !important;
  }
  body .chapter-style--press .wall-item-title {
    font-size: 16px !important; line-height: 1.32 !important;
  }
}

/* —— Hover lift for image-card archetypes —— */
@media (min-width: 821px) {
  body .chapter-style--expedition .wall-item,
  body .chapter-style--expedition-dark .wall-item,
  body .chapter-style--gallery .wall-item,
  body .chapter-style--press .wall-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  body .chapter-style--expedition .wall-item:hover,
  body .chapter-style--expedition-dark .wall-item:hover,
  body .chapter-style--gallery .wall-item:hover,
  body .chapter-style--press .wall-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 0 1px var(--gold) inset;
  }
}

/* ─── Phone mode: archetypes collapse to the existing photo-left/text-right
       template — they're a desktop feature. Mobile already has its working
       layout from earlier. ─── */
@media (max-width: 820px) {
  body [class*="chapter-style--"] .wall-items {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    max-width: 100% !important;
  }
  body [class*="chapter-style--"] .wall-item {
    /* let the existing mobile rules drive this */
    display: grid !important;
    background: rgba(11,13,18,0.45) !important;
    border-left: 1px solid var(--gold-dim) !important;
    border-bottom: 0 !important;
  }
  body [class*="chapter-style--"] .wall-thumb {
    width: 100% !important; height: 100% !important;
    aspect-ratio: 3/4 !important;
    filter: none !important;
    position: relative !important;
    inset: auto !important;
  }
  body [class*="chapter-style--"] .wall-item-body {
    position: relative !important;
    background: transparent !important;
    padding: 4px 0 !important;
    inset: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════
   DESKTOP REFINEMENT — hero full image, modal photos, on-photo text
   ════════════════════════════════════════════════════════════ */

/* Hero portrait — show FULL image (no zoom-in crop) */
@media (min-width: 821px) {
  body .hero .portrait-frame.has-photo {
    background-size: contain !important;
    background-color: var(--bg-card-2);
    background-repeat: no-repeat !important;
    background-position: center !important;
    box-shadow:
      0 0 0 1px var(--gold-dim) inset,
      0 24px 60px rgba(0,0,0,0.5),
      0 0 32px rgba(214,168,90,0.18);
  }
}

/* Modal inline figures — rounded + thick gold border, themed shadow */
body .modal-body .inline-fig img,
body .modal-body .inline-fig .inline-fig-frame {
  border-radius: 16px !important;
  overflow: hidden;
}
body .modal-body .inline-fig img {
  border: 3px solid var(--gold) !important;
  box-shadow:
    0 0 0 1px var(--gold-dim) inset,
    0 14px 32px rgba(0,0,0,0.5),
    0 0 22px rgba(214,168,90,0.20);
  background: var(--bg-card-2);
}
/* Inline figs that are portrait-tall — show full image, not crop */
body .modal-body .inline-fig.fig-tall img {
  object-fit: contain !important;
  background: var(--bg-card-2);
}

/* ─── EXPEDITION & EXPEDITION-DARK: center on-photo text, gold glow, BIG ─── */
@media (min-width: 821px) {
  body .chapter-style--expedition .wall-item-body,
  body .chapter-style--expedition-dark .wall-item-body {
    text-align: center !important;
    padding: 32px 28px !important;
  }
  body .chapter-style--expedition .wall-item-subhead,
  body .chapter-style--expedition-dark .wall-item-subhead {
    justify-content: center !important;
    gap: 14px;
  }
  body .chapter-style--expedition .wall-item-cat,
  body .chapter-style--expedition-dark .wall-item-cat,
  body .chapter-style--expedition .wall-item-date,
  body .chapter-style--expedition-dark .wall-item-date,
  body .chapter-style--expedition .wall-item-meta,
  body .chapter-style--expedition-dark .wall-item-meta {
    text-align: center !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7), 0 0 12px rgba(214,168,90,0.5) !important;
  }
  body .chapter-style--expedition .wall-item-title,
  body .chapter-style--expedition-dark .wall-item-title {
    text-align: center !important;
    font-size: 28px !important;
    line-height: 1.22 !important;
    font-weight: 800 !important;
    /* Stronger gold glow + drop-shadow so text always reads on photo */
    text-shadow:
      0 2px 8px rgba(0,0,0,0.8),
      0 0 18px rgba(214,168,90,0.55),
      0 0 32px rgba(255,242,198,0.25) !important;
    /* No transparent text — fully white-gold, visible over any photo */
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #fff5d4 !important;
    -webkit-text-fill-color: #fff5d4 !important;
  }
  body .chapter-style--expedition .wall-item-meta,
  body .chapter-style--expedition-dark .wall-item-meta {
    color: var(--gold-2) !important;
    margin-top: 6px;
  }
  /* Slightly taller cards so big title fits */
  body .chapter-style--expedition .wall-item,
  body .chapter-style--expedition-dark .wall-item {
    height: 500px !important;
  }
}

/* ─── 35-PIECE COLLECTION — KILL the side-scroll, become a mosaic grid ─── */
@media (min-width: 821px) {
  body .legacy-section .donation-strip {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: 220px !important;
    grid-auto-flow: dense !important;
    gap: 14px !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
    cursor: default !important;
    -webkit-overflow-scrolling: auto !important;
  }
  body .legacy-section .donation-strip .donation-tile {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    flex: none !important;
    scroll-snap-align: none !important;
  }
  body .legacy-section .donation-strip .donation-tile.tall {
    grid-column: span 1 !important;
    grid-row: span 2 !important;
  }
  body .legacy-section .donation-strip .donation-tile.wide {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }
}
/* Mobile keeps the carousel (no change to working mobile layout) */

/* ════════════════════════════════════════════════════════════
   DESKTOP — Hero portrait MUCH bigger (face proportional to name)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  body .hero .hero-portrait .portrait-frame {
    width: clamp(420px, 40vw, 640px) !important;
    height: clamp(540px, 50vw, 800px) !important;
    border-radius: 22px !important;
    border-width: 3px !important;
  }
  body .hero .portrait-frame.has-photo {
    background-size: contain !important;
    background-color: var(--bg-card-2);
    background-repeat: no-repeat !important;
    background-position: center !important;
    box-shadow:
      0 0 0 1px var(--gold-dim) inset,
      0 28px 70px rgba(0,0,0,0.55),
      0 0 38px rgba(214,168,90,0.20);
  }
  /* Make hero grid breathe so portrait has room */
  body .hero .hero-grid {
    align-items: center !important;
    gap: 56px !important;
  }
}

/* Inline figure caption — small italic gold-tinted line under each photo */
.inline-fig-cap {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-2);
  line-height: 1.45;
  margin: 10px auto 0;
  max-width: 90%;
  padding: 0 8px;
  letter-spacing: 0.2px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
@media (max-width: 720px) {
  .inline-fig-cap { font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════
   CHAPTER 11/12/15 REDESIGN — commentary & default get BIG photos
   (replaces the tiny 100px op-ed thumb)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {

  /* COMMENTARY (Ch 11 America, 12 Interview) — magazine card style:
     LARGE photo on left + headline + lede on right, generous height. */
  body .chapter-style--commentary .wall-items {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body .chapter-style--commentary .wall-item {
    display: grid !important;
    grid-template-columns: 380px minmax(0, 1fr) !important;
    gap: 32px !important;
    padding: 18px !important;
    border-radius: 18px;
    border: 2px solid var(--gold-dim);
    background: rgba(11,13,18,0.5);
    align-items: center;
  }
  body .chapter-style--commentary .wall-thumb {
    width: 380px !important;
    height: 280px !important;
    aspect-ratio: auto !important;
    border-radius: 14px !important;
    border-width: 2px !important;
  }
  body .chapter-style--commentary .wall-item-title {
    font-size: 26px !important;
    line-height: 1.28 !important;
    font-weight: 800 !important;
  }
  body .chapter-style--commentary .wall-item-cat {
    color: var(--claret) !important;
    font-size: 13px !important;
    letter-spacing: 4px !important;
  }
  body .chapter-style--commentary .wall-item-date {
    font-size: 15px !important;
  }
  body .chapter-style--commentary .wall-item-meta {
    font-size: 15px !important;
    margin-top: 8px !important;
  }

  /* DEFAULT (Ch 15 "그 외") — clean tile grid, photos prominent */
  body .chapter-style--default .wall-items {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 22px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
  }
  body .chapter-style--default .wall-item {
    display: block !important;
    grid-template-columns: none !important;
    padding: 0 !important;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold-dim);
    background: rgba(11,13,18,0.45);
  }
  body .chapter-style--default .wall-thumb {
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--gold-dim) !important;
    margin: 0 !important;
  }
  body .chapter-style--default .wall-item-body {
    padding: 16px 18px 18px !important;
    text-align: left !important;
  }
  body .chapter-style--default .wall-item-title {
    font-size: 19px !important;
    line-height: 1.32 !important;
    font-weight: 700 !important;
  }
  body .chapter-style--default .wall-item-cat,
  body .chapter-style--default .wall-item-meta,
  body .chapter-style--default .wall-item-date {
    text-align: left !important;
  }

  /* Hover lift for both archetypes */
  body .chapter-style--commentary .wall-item,
  body .chapter-style--default .wall-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  body .chapter-style--commentary .wall-item:hover,
  body .chapter-style--default .wall-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.5), 0 0 0 1px var(--gold) inset;
  }
}

/* ════════════════════════════════════════════════════════════
   CH 11/12/15 — CLEAN, DIGNIFIED REDESIGN (overrides flashy version)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {

  /* COMMENTARY (Ch 11 미국 평론, Ch 12 대담) — quiet editorial list */
  body .chapter-style--commentary .wall-items {
    max-width: 1080px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  body .chapter-style--commentary .wall-item {
    display: grid !important;
    grid-template-columns: 280px minmax(0, 1fr) !important;
    gap: 32px !important;
    padding: 28px 8px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    background: transparent !important;
    border-radius: 0 !important;
    align-items: center;
  }
  body .chapter-style--commentary .wall-item:last-child {
    border-bottom: 0 !important;
  }
  body .chapter-style--commentary .wall-thumb {
    width: 280px !important;
    height: 200px !important;
    aspect-ratio: auto !important;
    border-radius: 6px !important;
    border: 1px solid var(--line) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  }
  body .chapter-style--commentary .wall-item-title {
    font-size: 22px !important;
    line-height: 1.32 !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
  }
  body .chapter-style--commentary .wall-item-cat {
    color: var(--gold-2) !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    font-weight: 600;
  }
  body .chapter-style--commentary .wall-item-date {
    font-size: 13.5px !important;
  }
  body .chapter-style--commentary .wall-item-meta {
    font-size: 14px !important;
    margin-top: 6px !important;
    color: var(--muted) !important;
    font-style: normal !important;
  }
  /* No hover lift — quiet design */
  body .chapter-style--commentary .wall-item {
    transition: none !important;
  }
  body .chapter-style--commentary .wall-item:hover {
    transform: none !important;
    box-shadow: none !important;
    background: rgba(214,168,90,0.04) !important;
  }
  body .chapter-style--commentary .wall-item:hover .wall-thumb {
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  }

  /* DEFAULT (Ch 15 그 외) — clean 2-col list, matching commentary tone */
  body .chapter-style--default .wall-items {
    max-width: 1080px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  body .chapter-style--default .wall-item {
    display: grid !important;
    grid-template-columns: 240px minmax(0, 1fr) !important;
    gap: 28px !important;
    padding: 22px 8px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    background: transparent !important;
    border-radius: 0 !important;
    align-items: center;
  }
  body .chapter-style--default .wall-item:last-child {
    border-bottom: 0 !important;
  }
  body .chapter-style--default .wall-thumb {
    width: 240px !important;
    height: 160px !important;
    aspect-ratio: auto !important;
    border-radius: 6px !important;
    border: 1px solid var(--line) !important;
  }
  body .chapter-style--default .wall-item-title {
    font-size: 19px !important;
    line-height: 1.34 !important;
    font-weight: 700 !important;
    text-align: left !important;
  }
  body .chapter-style--default .wall-item-cat,
  body .chapter-style--default .wall-item-meta,
  body .chapter-style--default .wall-item-date {
    text-align: left !important;
  }
  body .chapter-style--default .wall-item-cat {
    color: var(--gold-2) !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
  }
  body .chapter-style--default .wall-item-meta {
    color: var(--muted) !important;
    font-style: normal !important;
    font-size: 13.5px !important;
  }
  body .chapter-style--default .wall-item-body {
    padding: 0 !important;
  }
  body .chapter-style--default .wall-item:hover {
    background: rgba(214,168,90,0.04) !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   CH 12 INTERVIEW — PORTRAIT archetype: faces centered like ID photos
   No zoom-crop. Each photo shown in full, dignified frame.
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  body .chapter-style--portrait .wall-items {
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 32px 28px !important;
  }
  body .chapter-style--portrait .wall-item {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: center !important;
  }
  /* ID-photo frame: contained image, centered, gold double-stroke */
  body .chapter-style--portrait .wall-thumb {
    width: 100% !important;
    height: 320px !important;
    aspect-ratio: auto !important;
    background-size: contain !important;
    background-color: var(--bg-card-2) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    border: 1px solid var(--gold) !important;
    border-radius: 4px !important;
    box-shadow:
      0 0 0 6px var(--bg-card) inset,
      0 0 0 7px var(--gold-dim) inset,
      0 10px 26px rgba(0,0,0,0.5);
    position: relative;
  }
  /* tiny corner mark — subtle museum hint */
  body .chapter-style--portrait .wall-thumb::after {
    content: "";
    position: absolute;
    top: 12px; left: 12px;
    width: 8px; height: 8px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.6;
  }
  body .chapter-style--portrait .wall-thumb-num {
    bottom: 8px !important; right: 10px !important;
    background: rgba(0,0,0,0.55) !important;
    border: 1px solid var(--gold-dim) !important;
  }
  body .chapter-style--portrait .wall-item-body {
    padding: 0 !important;
    text-align: center !important;
  }
  body .chapter-style--portrait .wall-item-subhead {
    justify-content: center !important;
  }
  body .chapter-style--portrait .wall-item-title {
    font-size: 17px !important;
    line-height: 1.34 !important;
    font-weight: 700 !important;
    text-align: center !important;
    /* solid color — no shimmer here, ID-photo dignity */
    background: none !important;
    -webkit-text-fill-color: var(--text) !important;
    color: var(--text) !important;
    filter: none !important;
    animation: none !important;
  }
  body .chapter-style--portrait .wall-item-cat,
  body .chapter-style--portrait .wall-item-meta,
  body .chapter-style--portrait .wall-item-date {
    text-align: center !important;
  }
  body .chapter-style--portrait .wall-item-cat {
    font-size: 10.5px !important;
    color: var(--gold-2) !important;
    letter-spacing: 3.5px !important;
  }
  body .chapter-style--portrait .wall-item-meta {
    font-size: 13px !important;
    color: var(--muted) !important;
    font-style: italic !important;
  }
  body .chapter-style--portrait .wall-item:hover .wall-thumb {
    box-shadow:
      0 0 0 6px var(--bg-card) inset,
      0 0 0 7px var(--gold) inset,
      0 14px 32px rgba(0,0,0,0.55),
      0 0 18px rgba(214,168,90,0.25);
  }
}

/* ════════════════════════════════════════════════════════════
   35-PIECE: MUSEUM SPECIMEN TREATMENT
   Each tile becomes a labeled artifact card — ivory plate, dark
   border, subtle drop-shadow, sequence number stamped lower-right.
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  body .legacy-section { position: relative; }
  /* Gallery-wall backdrop hint */
  body .legacy-section::before {
    content: "";
    position: absolute; inset: 60px 0 0 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(214,168,90,0.04), transparent 60%),
      repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.012) 0 2px,
        transparent 2px 4px
      );
    z-index: 0;
    pointer-events: none;
  }
  body .legacy-section > * { position: relative; z-index: 1; }

  body .legacy-section .donation-strip .donation-tile {
    border-radius: 4px !important;
    border: 1px solid var(--gold-dim) !important;
    background-color: var(--bg-card-2) !important;
    background-size: cover !important;
    box-shadow:
      0 0 0 6px var(--bg-card) inset,
      0 0 0 7px var(--gold-dim) inset,
      0 14px 32px rgba(0,0,0,0.55),
      0 1px 0 rgba(214,168,90,0.10) !important;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  /* Top-left museum corner */
  body .legacy-section .donation-strip .donation-tile::before {
    content: "";
    position: absolute;
    top: 14px; left: 14px;
    width: 12px; height: 12px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.7;
    z-index: 2;
  }
  /* Bottom-right catalogue number plate */
  body .legacy-section .donation-strip .donation-tile::after {
    counter-increment: artifact;
    content: "№ " counter(artifact, decimal-leading-zero);
    position: absolute;
    bottom: 12px; right: 14px;
    font-family: var(--capitals);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold-2);
    background: rgba(11,13,18,0.7);
    padding: 4px 8px;
    border: 1px solid var(--gold-dim);
    border-radius: 2px;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }
  body .legacy-section .donation-strip { counter-reset: artifact; }
  body .legacy-section .donation-strip .donation-tile:hover {
    transform: translateY(-6px) !important;
    box-shadow:
      0 0 0 6px var(--bg-card) inset,
      0 0 0 7px var(--gold) inset,
      0 22px 48px rgba(0,0,0,0.65),
      0 0 28px rgba(214,168,90,0.25) !important;
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT SECTION POLISH — drop cap, pull-quote, refined rhythm
   ════════════════════════════════════════════════════════════ */
.about-body {
  max-width: 760px !important;
  margin: 0 auto !important;
  font-family: var(--kr);
  line-height: 1.85 !important;
}
.about-body p {
  margin: 0 0 22px;
  font-size: 17px;
  color: var(--text-2);
  letter-spacing: -0.1px;
}
/* Drop cap on the very first paragraph */
.about-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 64px;
  line-height: 0.9;
  float: left;
  margin: 6px 14px -2px 0;
  background: linear-gradient(180deg, #fff2c6, var(--gold) 70%, var(--gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 6px rgba(214,168,90,0.30));
}
/* Treat quoted lines (in straight or curly quotes) as pull-style */
.about-body p:has(em),
.about-body em {
  color: var(--gold-2);
  font-style: italic;
  font-weight: 500;
}
/* Last paragraph as closing statement — italic, centered, gold */
.about-body p:last-of-type {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-2);
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-dim);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 1px 6px rgba(214,168,90,0.20));
}
@media (max-width: 720px) {
  .about-body p { font-size: 16px; }
  .about-body p:first-of-type::first-letter { font-size: 52px; }
  .about-body p:last-of-type { font-size: 17px; }
}

/* Kill the fake "No. 01" catalogue plate — these aren't real museum numbers */
body .legacy-section .donation-strip .donation-tile::after {
  content: none !important;
  counter-increment: none !important;
}
body .legacy-section .donation-strip { counter-reset: none !important; }

/* ════════════════════════════════════════════════════════════
   MODAL HERO — low-res images get 'contain' framing
   ════════════════════════════════════════════════════════════ */
.modal-hero.low-res {
  background-size: contain !important;
  background-color: var(--bg-card-2) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.modal-hero.low-res::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(11,13,18,0.18)) !important;
}

/* ════════════════════════════════════════════════════════════
   CH12 RIGHT-SIDE CUT FIX — portrait archetype overflow guard
   ════════════════════════════════════════════════════════════ */
body .chapter-style--portrait .wall-items,
body .chapter-style--portrait .wall-item,
body .chapter-style--portrait .wall-item-body,
body .chapter-style--portrait .wall-thumb {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
body .chapter-style--portrait .wall-item-title,
body .chapter-style--portrait .wall-item-meta,
body .chapter-style--portrait .wall-item-cat,
body .chapter-style--portrait .wall-item-date {
  word-break: keep-all;
  overflow-wrap: anywhere;
  white-space: normal;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════
   DESKTOP — BUMP commentary & default list sizes (one per row)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  /* COMMENTARY (America, Pilgrimage, Heresy) — bigger photo + bigger type */
  body .chapter-style--commentary .wall-item {
    grid-template-columns: 360px minmax(0, 1fr) !important;
    gap: 40px !important;
    padding: 36px 8px !important;
  }
  body .chapter-style--commentary .wall-thumb {
    width: 360px !important;
    height: 260px !important;
  }
  body .chapter-style--commentary .wall-item-title {
    font-size: 28px !important;
    line-height: 1.28 !important;
    letter-spacing: -0.3px !important;
  }
  body .chapter-style--commentary .wall-item-cat {
    font-size: 12.5px !important;
  }
  body .chapter-style--commentary .wall-item-date {
    font-size: 16px !important;
  }
  body .chapter-style--commentary .wall-item-meta {
    font-size: 15.5px !important;
  }

  /* DEFAULT (단상) — same scale */
  body .chapter-style--default .wall-item {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    gap: 36px !important;
    padding: 30px 8px !important;
  }
  body .chapter-style--default .wall-thumb {
    width: 320px !important;
    height: 220px !important;
  }
  body .chapter-style--default .wall-item-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  body .chapter-style--default .wall-item-cat {
    font-size: 12px !important;
  }
  body .chapter-style--default .wall-item-date {
    font-size: 15px !important;
  }
  body .chapter-style--default .wall-item-meta {
    font-size: 15px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   MODAL CODA — professional article ending
   ════════════════════════════════════════════════════════════ */
.modal-coda {
  max-width: 560px;
  margin: 60px auto 24px;
  text-align: center;
  padding: 0 16px;
}
.modal-coda-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.modal-coda-rule::before,
.modal-coda-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 50%, transparent 100%);
}
.modal-coda-mark {
  font-size: 18px;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(214,168,90,0.45));
  letter-spacing: 0;
}
.coda-author {
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(214,168,90,0.22);
}
.coda-pub {
  font-family: var(--display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.coda-series {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .modal-coda { margin: 44px auto 18px; }
  .modal-coda-mark { font-size: 16px; }
  .coda-author { font-size: 11px; letter-spacing: 4px; }
  .coda-pub { font-size: 13.5px; }
  .coda-series { font-size: 10px; letter-spacing: 2.5px; }
}

/* ════════════════════════════════════════════════════════════
   STICKY TOPBAR — follows the user anywhere on the page
   ════════════════════════════════════════════════════════════ */
.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgba(11,13,18,0.88) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  border-bottom: 1px solid var(--gold-dim) !important;
  transition: background 0.2s ease;
}
[data-theme="paper"] .topbar {
  background: rgba(255,251,242,0.92) !important;
}
.topnav a, .topnav button {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}
.topnav a:hover {
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(214,168,90,0.4);
}

/* ════════════════════════════════════════════════════════════
   GOLD ★ — editor's pick on recommended works
   ════════════════════════════════════════════════════════════ */
.wall-item-star {
  display: inline-block;
  margin-right: 8px;
  font-size: 0.85em;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(214,168,90,0.6));
  vertical-align: baseline;
  animation: star-twinkle 4s ease-in-out infinite;
}
@keyframes star-twinkle {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(214,168,90,0.5)); opacity: 0.95; }
  50%      { filter: drop-shadow(0 0 14px rgba(255,242,198,0.85)); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════
   MODAL ACTIONS — buy / ebook / mail buttons (book pages)
   ════════════════════════════════════════════════════════════ */
.modal-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 16px 0 24px;
}
.modal-actions a {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  font-family: var(--capitals);
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--gold-2);
  background: rgba(214,168,90,0.06);
  transition: all 0.2s ease;
}
.modal-actions a:hover {
  background: rgba(214,168,90,0.18);
  border-color: var(--gold);
  color: var(--text);
}
.modal-actions a.act-buy {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-0) !important;
  border-color: var(--gold);
  font-weight: 700;
}
.modal-actions a.act-buy:hover {
  background: linear-gradient(135deg, var(--gold), #fff2c6);
  box-shadow: 0 4px 16px rgba(214,168,90,0.4);
}

/* ════════════════════════════════════════════════════════════
   TRANSLATIONS — gold logo block, displayed once in hero/intro
   ════════════════════════════════════════════════════════════ */
.translations-mark {
  display: flex; flex-direction: column; align-items: center;
  margin: 24px auto 36px;
  max-width: 720px;
  padding: 18px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background: rgba(11,13,18,0.45);
  position: relative;
}
.translations-mark::before, .translations-mark::after {
  content: "✦";
  position: absolute;
  color: var(--gold);
  font-size: 14px;
  filter: drop-shadow(0 0 8px rgba(214,168,90,0.5));
}
.translations-mark::before { top: -8px; left: -8px; }
.translations-mark::after  { bottom: -8px; right: -8px; }
.translations-mark-eyebrow {
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 10.5px;
  color: var(--gold-2);
  margin-bottom: 10px;
}
.translations-mark-list {
  font-family: var(--display);
  font-style: italic;
  text-align: center;
  font-size: 17px;
  background: linear-gradient(90deg,
    var(--gold-dim), var(--gold), #fff2c6, var(--gold-2), var(--gold-dim));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 6s linear infinite;
  filter: drop-shadow(0 1px 6px rgba(214,168,90,0.30));
  line-height: 1.6;
}
@media (max-width: 720px) {
  .translations-mark { margin: 18px 12px 28px; padding: 14px 18px; }
  .translations-mark-list { font-size: 15.5px; }
}

/* ════════════════════════════════════════════════════════════
   TOPNAV DROPDOWN — chapter navigator (sticky, always accessible)
   ════════════════════════════════════════════════════════════ */
.topnav-dropdown { position: relative; }
.topnav-trigger {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 6px 12px;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  transition: background 0.18s ease, color 0.18s ease;
}
.topnav-trigger:hover { color: var(--gold-2); text-shadow: 0 0 12px rgba(214,168,90,0.4); }
.topnav-trigger .chev {
  font-size: 10px;
  transition: transform 0.2s ease;
  color: var(--gold);
}
.topnav-dropdown.open .topnav-trigger { color: var(--gold-2); }
.topnav-dropdown.open .topnav-trigger .chev { transform: rotate(180deg); }
.topnav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  max-height: 70vh;
  overflow-y: auto;
  background: rgba(15, 17, 24, 0.96);
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 24px rgba(214,168,90,0.10);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.topnav-dropdown.open .topnav-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.menu-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text-2);
  padding: 9px 18px;
  font-family: var(--kr);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.menu-item:hover { background: rgba(214,168,90,0.10); color: var(--gold-2); }
.menu-item-all {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--gold);
  text-align: center;
  padding: 11px 18px;
  font-weight: 600;
}
.menu-divider {
  height: 1px;
  background: var(--gold-dim);
  margin: 6px 14px;
  opacity: 0.5;
}
.menu-section-label {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 9.5px;
  color: var(--muted);
  padding: 10px 18px 4px;
  text-transform: uppercase;
}

/* —— Phone: dropdown becomes full-width pull-down sheet —— */
@media (max-width: 720px) {
  .topnav-menu {
    position: fixed;
    top: 56px; left: 12px; right: 12px;
    min-width: 0;
    max-height: 75vh;
  }
}

/* ════════════════════════════════════════════════════════════
   BOOKMARK FAB + heart icons on cards + drawer
   ════════════════════════════════════════════════════════════ */
.bookmark-fab {
  background: transparent;
  border: 0;
  color: var(--gold-2);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.bookmark-fab:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(214,168,90,0.5);
}
.bookmark-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--gold);
  color: var(--bg-0);
  font-family: var(--capitals);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 999px;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.wall-item { position: relative; }
.wall-item-bookmark {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 5;
  background: rgba(11,13,18,0.65);
  border: 1px solid var(--gold-dim);
  color: var(--gold-2);
  font-size: 16px;
  width: 32px; height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.wall-item:hover .wall-item-bookmark { opacity: 1; }
.wall-item-bookmark.on { opacity: 1; color: var(--gold); border-color: var(--gold); background: rgba(214,168,90,0.15); }
.wall-item-bookmark:hover { transform: scale(1.1); background: rgba(214,168,90,0.20); }
@media (max-width: 720px) {
  .wall-item-bookmark { opacity: 1; width: 28px; height: 28px; font-size: 14px; top: 8px; right: 8px; }
}

.bookmark-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 16px 16px;
}
.bookmark-drawer.hidden { display: none; }
.bookmark-drawer-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 32px rgba(214,168,90,0.15);
}
.bookmark-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gold-dim);
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold-2);
}
.bookmark-close {
  font-size: 22px;
  background: transparent;
  border: 0;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1;
}
.bookmark-list {
  overflow-y: auto;
  padding: 8px 0;
}
.bookmark-empty {
  padding: 24px 20px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.bookmark-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  color: var(--text);
  transition: background 0.18s ease;
}
.bookmark-row:hover { background: rgba(214,168,90,0.06); }
.bookmark-row:last-child { border-bottom: 0; }
.bookmark-row-cat {
  font-family: var(--capitals);
  letter-spacing: 2.5px;
  font-size: 9.5px;
  color: var(--gold-2);
  min-width: 70px;
}
.bookmark-row-title {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.bookmark-row-x {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.bookmark-row-x:hover { color: var(--claret); }

/* ════════════════════════════════════════════════════════════
   MODAL BOOK — specialized layout for kind='book'
   ════════════════════════════════════════════════════════════ */
.modal-book .modal-book-head {
  padding: 40px 20px 28px;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(214,168,90,0.10), transparent 70%),
    var(--bg-card);
  border-bottom: 1px solid var(--gold-dim);
}
.modal-book .modal-book-cover {
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 3 / 4.4;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card-2);
  border-radius: 6px;
  border: 2px solid var(--gold-dim);
  box-shadow:
    0 0 0 1px rgba(214,168,90,0.20) inset,
    0 28px 50px rgba(0,0,0,0.55),
    0 0 36px rgba(214,168,90,0.18);
}
.modal-book .modal-hero { display: none !important; }
.modal-book .modal-eyebrow {
  text-align: center;
  margin-top: 4px;
}
.modal-book .modal-title {
  text-align: center;
}
.modal-book .modal-meta {
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   ABOUT — single full-fit photo (scene-2, dad at pulpit)
   ════════════════════════════════════════════════════════════ */
.about-collage.about-collage--single {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  overflow: visible !important;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  aspect-ratio: auto !important;
  cursor: default !important;
  background: transparent !important;
}
.about-single-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 2px solid var(--gold-dim);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 24px rgba(214,168,90,0.18);
  cursor: zoom-in;
  background: var(--bg-card-2);
}

/* Book modal: book-text body styling */
.modal-book .modal-body p {
  font-size: 16.5px;
  line-height: 1.75;
}
.modal-book .modal-body p:first-of-type {
  font-size: 18px;
  font-family: var(--display);
  color: var(--text);
  text-align: left;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-dim);
}
.modal-book .modal-body p:has-text("[목차]") {
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--gold-2);
  text-align: center;
  margin-top: 30px;
}

/* ════════════════════════════════════════════════════════════
   LITERARY FONTS — registered font variables for finer hierarchy
   ════════════════════════════════════════════════════════════ */
:root {
  --serif-ko-literary: "Nanum Myeongjo", "Noto Serif KR", serif;
  --serif-en-literary: "Crimson Pro", "Cormorant Garamond", "EB Garamond", serif;
  --display-grand:     "Playfair Display", "Cormorant Garamond", serif;
}

/* Hero name — more dramatic, gradient gold */
.hero-name {
  font-family: var(--display-grand);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.hero-name .accent {
  background: linear-gradient(180deg, #fff2c6 0%, var(--gold) 55%, var(--gold-dim) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(214,168,90,0.30));
}
.hero-name-en {
  font-family: var(--display-grand);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 4px;
}
.hero-tagline {
  font-family: var(--serif-ko-literary);
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  letter-spacing: 0.2px;
}
.hero-bio {
  font-family: var(--serif-ko-literary);
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-2);
  letter-spacing: 0.1px;
}

/* About body — literary serif */
.about-body {
  font-family: var(--serif-ko-literary);
}
.about-body p {
  font-family: var(--serif-ko-literary);
  font-size: 18px;
  line-height: 1.95;
  color: var(--text);
  letter-spacing: 0.1px;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--display-grand);
}
.about-body p:last-of-type {
  font-family: var(--display-grand);
}

/* Modal body — literary serif when reading articles */
.modal-body {
  font-family: var(--serif-ko-literary);
  font-size: 17.5px;
  line-height: 1.95;
  letter-spacing: 0.05px;
  color: var(--text-2);
}
.modal-body p { margin: 0 0 22px; }
.modal-body p:first-of-type {
  font-size: 18.5px;
  line-height: 1.85;
}
:lang(en) .modal-body,
.modal-body[lang="en"] { font-family: var(--serif-en-literary); font-size: 18px; line-height: 1.75; }
:lang(es) .modal-body,
.modal-body[lang="es"] { font-family: var(--serif-en-literary); font-size: 18px; line-height: 1.75; }

/* Wall title (chapter masthead) — Playfair Display italic */
.wall-title {
  font-family: var(--display-grand);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.wall-pill {
  font-family: var(--capitals);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   ACADEMIC TRANSLATIONS — small footer in About (not hero)
   ════════════════════════════════════════════════════════════ */
.translations-mark-small {
  display: block;
  text-align: center;
  margin: 36px auto 8px;
  padding: 18px 24px;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  max-width: 600px;
}
.translations-mark-small .tx-mark-label {
  display: block;
  font-family: var(--capitals);
  letter-spacing: 5px;
  font-size: 10px;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.translations-mark-small .tx-mark-list {
  display: block;
  font-family: var(--display-grand);
  font-style: italic;
  font-size: 15px;
  background: linear-gradient(90deg,
    var(--gold-dim), var(--gold-2), #fff2c6, var(--gold), var(--gold-dim));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 7s linear infinite;
  filter: drop-shadow(0 1px 5px rgba(214,168,90,0.25));
}
/* Kill the old hero translations block — moved to About */
.translations-mark { display: none !important; }

/* ════════════════════════════════════════════════════════════
   LANGUAGE SWITCH (topbar) — KO/EN/ES toggle
   ════════════════════════════════════════════════════════════ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin: 0 8px;
  padding: 3px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--capitals);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}
.lang-btn:hover { color: var(--gold-2); }
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-0);
  text-shadow: none;
}
@media (max-width: 720px) {
  .lang-switch { gap: 0; padding: 2px; }
  .lang-btn { padding: 4px 7px; font-size: 10px; letter-spacing: 1px; }
}

/* ════════════════════════════════════════════════════════════
   MODAL FINIS — beautiful end-of-article close button
   ════════════════════════════════════════════════════════════ */
.modal-finis {
  margin: 40px auto 28px;
  text-align: center;
  max-width: 560px;
}
.modal-finis-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease;
}
.modal-finis-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(214,168,90,0.10), transparent 70%);
  transition: background 0.25s ease;
  pointer-events: none;
}
.modal-finis-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dim);
  color: var(--gold);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: rgba(11,13,18,0.5);
  box-shadow: 0 0 0 1px rgba(214,168,90,0.10) inset,
              0 10px 24px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
}
.modal-finis-label {
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  color: var(--gold-2);
  text-shadow: 0 0 12px rgba(214,168,90,0.20);
}
.modal-finis-btn:hover .modal-finis-arrow {
  border-color: var(--gold);
  background: rgba(214,168,90,0.15);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--gold) inset,
              0 14px 32px rgba(0,0,0,0.5),
              0 0 24px rgba(214,168,90,0.30);
  color: #fff2c6;
}
.modal-finis-btn:hover::before {
  background: radial-gradient(ellipse at center, rgba(214,168,90,0.18), transparent 65%);
}
.modal-finis-btn:hover .modal-finis-label {
  color: var(--gold);
}
.modal-finis-hint {
  font-family: var(--display-grand);
  font-style: italic;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* Pull-to-close affordance during swipe (visual feedback) */
.modal-card.swipe-active {
  transition: none !important;
}
.modal-card.swipe-active::before {
  content: "↑ 닫기";
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  color: var(--gold-2);
  font-family: var(--capitals);
  letter-spacing: 4px;
  font-size: 11px;
  background: rgba(11,13,18,0.85);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold-dim);
  text-shadow: 0 0 10px rgba(214,168,90,0.4);
}

/* ════════════════════════════════════════════════════════════
   ABOUT PORTRAIT — much bigger on web (user said: not visible)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  body .about-section .about-collage.about-collage--single {
    max-width: 1080px !important;
    margin: 0 auto 40px !important;
  }
  body .about-section .about-single-photo {
    width: 100% !important;
    min-height: 620px !important;
    max-height: 880px !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    border-radius: 18px !important;
    border-width: 3px !important;
    box-shadow:
      0 0 0 1px var(--gold-dim) inset,
      0 28px 56px rgba(0,0,0,0.55),
      0 0 32px rgba(214,168,90,0.20) !important;
  }
}
@media (min-width: 1280px) {
  body .about-section .about-collage.about-collage--single {
    max-width: 1240px !important;
  }
  body .about-section .about-single-photo {
    min-height: 720px !important;
    max-height: 980px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   ABOUT PORTRAIT — natural ratio, centered, NOT cropped/cover
   ════════════════════════════════════════════════════════════ */
body .about-section .about-collage.about-collage--single {
  display: block !important;
  text-align: center !important;
  max-width: 100% !important;
  margin: 0 auto 32px !important;
  padding: 0 !important;
}
body .about-section .about-single-photo {
  display: block !important;
  margin: 0 auto !important;
  width: auto !important;
  max-width: min(560px, 90%) !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 12px !important;
  border: 2px solid var(--gold-dim) !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.40), 0 0 18px rgba(214,168,90,0.12) !important;
}
@media (min-width: 1280px) {
  body .about-section .about-single-photo {
    max-width: 640px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   BOOK PREVIEW VIEWER — page-flip reader (full-screen overlay)
   ════════════════════════════════════════════════════════════ */
.preview-viewer {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-viewer.hidden { display: none; }
body.preview-open { overflow: hidden; }
.preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
}
.preview-frame {
  position: relative;
  width: min(96vw, 1200px);
  height: min(96vh, 900px);
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 14px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.75), 0 0 32px rgba(214,168,90,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--gold-dim);
  background: rgba(11,13,18,0.85);
}
.preview-title {
  font-family: var(--display-grand, var(--display));
  font-style: italic;
  font-size: 18px;
  color: var(--gold-2);
  text-shadow: 0 0 10px rgba(214,168,90,0.30);
  letter-spacing: -0.2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 14px;
}
.preview-close {
  font-size: 26px;
  background: transparent;
  border: 0;
  color: var(--text-2);
  cursor: pointer;
  width: 36px; height: 36px;
  line-height: 1;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.preview-close:hover { background: var(--claret); color: white; }
.preview-stage {
  flex: 1;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(214,168,90,0.06), transparent 60%),
    var(--bg-card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.preview-page-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6),
              0 0 0 1px var(--gold-dim);
  background: white;
  transition: opacity 0.18s ease;
}
.preview-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,13,18,0.75);
  border: 1px solid var(--gold-dim);
  color: var(--gold-2);
  font-size: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}
.preview-nav:hover {
  background: rgba(214,168,90,0.20);
  color: #fff2c6;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(214,168,90,0.30);
  transform: translateY(-50%) scale(1.05);
}
.preview-nav[disabled] {
  opacity: 0.25;
  pointer-events: none;
}
.preview-prev { left: 16px; }
.preview-next { right: 16px; }
.preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-top: 1px solid var(--gold-dim);
  background: rgba(11,13,18,0.85);
}
.preview-counter {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 11.5px;
  color: var(--gold);
}
.preview-hint {
  font-family: var(--display-grand, var(--display));
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .preview-frame {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
  .preview-title { font-size: 15px; }
  .preview-nav { width: 44px; height: 44px; font-size: 22px; }
  .preview-prev { left: 10px; }
  .preview-next { right: 10px; }
  .preview-hint { display: none; }
}

/* "미리보기 펼치기" button in modal — gold gradient like buy button */
.modal-actions .act-preview {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--bg-0) !important;
  border: 1px solid var(--gold);
  font-family: var(--capitals);
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-actions .act-preview:hover {
  background: linear-gradient(135deg, var(--gold), #fff2c6);
  box-shadow: 0 6px 20px rgba(214,168,90,0.45);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   SEARCH — top-right trigger + full-screen overlay panel
   ════════════════════════════════════════════════════════════ */
.search-trigger {
  background: transparent;
  border: 0;
  color: var(--gold-2);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 10px;
  margin-left: 4px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}
.search-trigger:hover {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(214,168,90,0.5);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  justify-content: center;
  padding-top: 8vh;
}
.search-overlay.hidden { display: none; }
body.search-open { overflow: hidden; }
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.search-panel {
  position: relative;
  width: min(720px, 94vw);
  max-height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.65),
    0 0 28px rgba(214,168,90,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gold-dim);
}
.search-icon {
  font-size: 22px;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(214,168,90,0.4);
}
.search-input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--kr);
  font-size: 18px;
  color: var(--text);
  padding: 4px 0;
}
.search-input::placeholder {
  color: var(--dim);
  font-style: italic;
}
.search-close {
  font-size: 24px;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.18s ease, color 0.18s ease;
}
.search-close:hover { background: var(--claret); color: white; }

.search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px;
  font-family: var(--capitals);
  letter-spacing: 2px;
  font-size: 10px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: rgba(11,13,18,0.4);
}
.search-count { color: var(--gold-2); }

.search-results {
  overflow-y: auto;
  padding: 4px 0 8px;
}
.search-results:empty::before {
  content: "결과가 없습니다. 다른 단어로 시도해보세요.";
  display: block;
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--display-grand, var(--display));
}
.search-input:placeholder-shown + .search-close + .search-meta + .search-results:empty::before {
  content: "";
}

.search-row {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 22px;
  cursor: pointer;
  font: inherit;
  color: var(--text);
  transition: background 0.15s ease;
}
.search-row:hover,
.search-row.on {
  background: rgba(214,168,90,0.08);
}
.search-row:last-child { border-bottom: 0; }
.search-row-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-size: 10px;
  color: var(--gold-2);
  margin-bottom: 4px;
}
.search-row-sep { color: var(--gold-dim); }
.search-row-series { color: var(--muted); letter-spacing: 1.5px; }
.search-row-star { color: var(--gold); filter: drop-shadow(0 0 6px rgba(214,168,90,0.5)); }
.search-row-title {
  font-family: var(--kr);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 4px;
}
.search-row-snippet {
  font-family: var(--serif-ko-literary, var(--kr));
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-top: 4px;
}
.search-row mark {
  background: rgba(214,168,90,0.30);
  color: var(--gold-2);
  padding: 0 2px;
  border-radius: 2px;
  text-shadow: 0 0 8px rgba(214,168,90,0.3);
}
.search-row-meta {
  font-family: var(--display-grand, var(--display));
  font-style: italic;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

@media (max-width: 720px) {
  .search-overlay { padding-top: 4vh; }
  .search-panel { width: 96vw; max-height: 90vh; }
  .search-head { padding: 12px 16px; }
  .search-input { font-size: 16px; }
  .search-row { padding: 12px 16px; }
  .search-meta { padding: 6px 16px; }
}

/* ════════════════════════════════════════════════════════════
   LANG SWITCH — much bigger + brighter (user couldn't see)
   ════════════════════════════════════════════════════════════ */
.lang-switch {
  gap: 4px !important;
  margin: 0 12px !important;
  padding: 4px !important;
  border: 1.5px solid var(--gold) !important;
}
.lang-btn {
  color: var(--text-2) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  font-weight: 700 !important;
  padding: 7px 13px !important;
  border-radius: 999px !important;
  text-shadow: 0 0 8px rgba(214,168,90,0.20);
}
.lang-btn:hover {
  color: var(--gold) !important;
  text-shadow: 0 0 14px rgba(214,168,90,0.55);
  background: rgba(214,168,90,0.10);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), #fff2c6) !important;
  color: var(--bg-0) !important;
  text-shadow: none !important;
  box-shadow: 0 0 14px rgba(214,168,90,0.45);
  font-weight: 800 !important;
}
@media (max-width: 720px) {
  .lang-switch { margin: 0 6px !important; padding: 3px !important; }
  .lang-btn { font-size: 12px !important; padding: 5px 10px !important; letter-spacing: 1.5px !important; }
}

/* ════════════════════════════════════════════════════════════
   TOPNAV — uniform sizing (book / footprints / about / lang)
   ════════════════════════════════════════════════════════════ */
.topbar {
  padding: 12px 28px !important;
}
.topnav {
  display: flex; align-items: center;
  gap: 16px;
}
.topnav > a {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text-2) !important;
  letter-spacing: 0.2px !important;
  padding: 6px 4px;
  transition: color 0.18s ease, text-shadow 0.18s ease;
}
.topnav > a:hover {
  color: var(--gold-2) !important;
  text-shadow: 0 0 12px rgba(214,168,90,0.40);
}
.topnav-trigger {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--text-2) !important;
  padding: 6px 10px !important;
}
.topnav-trigger:hover { color: var(--gold-2) !important; }

/* Lang switch — sized to MATCH nav links (not bigger) */
.lang-switch {
  gap: 2px !important;
  margin: 0 8px !important;
  padding: 3px !important;
  border: 1px solid var(--gold-dim) !important;
}
.lang-btn {
  color: var(--text-2) !important;
  font-size: 11.5px !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  padding: 5px 11px !important;
  border-radius: 999px !important;
  text-shadow: none !important;
}
.lang-btn:hover {
  color: var(--gold-2) !important;
  background: rgba(214,168,90,0.10);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold)) !important;
  color: var(--bg-0) !important;
  font-weight: 800 !important;
  box-shadow: 0 0 10px rgba(214,168,90,0.35);
}

/* Icon buttons (search, bookmark, admin, theme) — uniform */
.search-trigger,
.bookmark-fab,
.theme-toggle {
  font-size: 17px !important;
  padding: 5px 9px !important;
  color: var(--gold-2) !important;
}
.topnav > a[href="/admin.html"] {
  font-size: 16px !important;
  padding: 5px 6px !important;
  color: var(--gold-2) !important;
}

/* Brand mark */
.brand {
  font-size: 15px !important;
  margin-right: 12px;
}
.brand-mark { font-size: 17px !important; }
.brand-en {
  font-family: var(--capitals);
  letter-spacing: 3px;
  font-weight: 600;
}

/* ── PHONE / NARROW: compact, consistent ── */
@media (max-width: 820px) {
  .topbar { padding: 10px 14px !important; }
  .topnav { gap: 10px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .topnav::-webkit-scrollbar { display: none; }
  .topnav > a,
  .topnav-trigger { font-size: 13.5px !important; padding: 5px 4px !important; flex-shrink: 0; }
  .lang-switch { margin: 0 4px !important; padding: 2px !important; flex-shrink: 0; }
  .lang-btn { font-size: 10.5px !important; padding: 4px 8px !important; letter-spacing: 1px !important; }
  .search-trigger,
  .bookmark-fab,
  .theme-toggle { font-size: 15px !important; padding: 4px 6px !important; flex-shrink: 0; }
  .topnav > a[href="/admin.html"] { font-size: 14px !important; padding: 4px 4px !important; flex-shrink: 0; }
  .brand-en { font-size: 12px !important; letter-spacing: 2px; }
  .brand-mark { font-size: 14px !important; }
}
@media (max-width: 480px) {
  .topbar { padding: 8px 10px !important; }
  .topnav > a,
  .topnav-trigger { font-size: 12.5px !important; }
  .lang-btn { font-size: 10px !important; padding: 3px 6px !important; letter-spacing: 0.8px !important; }
}
