/* ============================================================
   ABS & HDR Publisher Group — shared stylesheet
   ------------------------------------------------------------
   Built from the supplied homepage mockup, keeping its visual
   language (Playfair Display + DM Sans, maroon and gold) and
   fixing the things that would have hurt a real public site:

   - Text contrast. The mockup put body text at alphas as low as
     0.2 over near-black, which is roughly 2:1 -- unreadable, and
     a failure under WCAG AA. Every text colour here is set to a
     value that actually reads.
   - Focus. There were no focus styles at all, so the site was
     unusable by keyboard. :focus-visible rings throughout.
   - Motion. Everything animated on load with no way out;
     prefers-reduced-motion is now respected.
   - Cards that behave like links are now <a> elements.
   ============================================================ */

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

:root {
  --maroon:      #6B1A2E;
  --maroon-deep: #3D0C1A;
  --maroon-mid:  #8C2640;
  --gold:        #C9A96E;
  --gold-pale:   #E8D5A8;
  --cream:       #F8F4EE;
  --off-white:   #FDFAF6;
  --ink:         #1A0D0D;
  --ink-mid:     #4A3030;
  --ink-soft:    #6F5252;          /* darkened from the mockup's #8A6A6A for AA on cream */
  --border:      rgba(107,26,46,0.12);
  --night:       #0A0204;

  /* Text on dark maroon / near-black. The mockup used alpha values
     between 0.2 and 0.55 here; these are the readable equivalents. */
  --on-dark:        #EBD9B4;
  --on-dark-soft:   #C3AA7C;
  --on-dark-faint:  #9C8558;

  --radius: 0px;
  --shell: 1320px;
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

/* Keyboard users could not see where they were in the mockup. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 3px;
}
.on-dark a:focus-visible,
.on-dark button:focus-visible { outline-color: var(--gold); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--maroon); color: #fff;
  padding: 12px 20px; font-size: 13px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── TOPBAR ── */
.topbar {
  background: var(--maroon-deep);
  padding: 9px 5vw;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-text {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.topbar-links { display: flex; gap: 20px; }
.topbar-links a {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-soft); text-decoration: none; transition: color 0.2s;
}
.topbar-links a:hover { color: var(--gold-pale); }

/* ── NAV ── */
nav.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-tree { width: 42px; height: 42px; flex: none; }
.nav-wordmark { line-height: 1.15; }
.nav-abs {
  font-size: 15px; font-weight: 600;
  color: var(--maroon-deep); letter-spacing: 0.04em;
}
.nav-hdr {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 11px; font-style: italic; font-weight: 400;
  color: var(--ink-soft); letter-spacing: 0.05em;
}

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--ink-mid); text-decoration: none; transition: color 0.2s;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--maroon);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--maroon); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--maroon); font-weight: 600; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer; text-decoration: none;
  padding: 10px 22px; border: 1.5px solid transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}
.btn-ghost { border-color: var(--maroon); color: var(--maroon); background: none; }
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-fill { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.btn-fill:hover { background: var(--maroon-deep); border-color: var(--maroon-deep); }
.btn-lg { padding: 13px 32px; font-size: 12px; }
.btn-gold {
  background: var(--gold); border-color: var(--gold); color: var(--maroon-deep);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.btn-gold:hover { background: var(--gold-pale); border-color: var(--gold-pale); }
.btn-outline-light {
  border-color: rgba(200,169,110,0.45); color: var(--on-dark);
  background: none; letter-spacing: 0.08em; text-transform: uppercase;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-pale); }

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--maroon-deep); }

/* ── shared section furniture ── */
.shell { max-width: var(--shell); margin: 0 auto; }
.label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  /* The brand gold (#C9A96E) only reaches ~2:1 on these pale backgrounds.
     #8A6B2C is the same hue darkened until it clears 4.5:1 on cream,
     off-white and white alike -- measured, not eyeballed. */
  text-transform: uppercase; color: #8A6B2C;
  margin-bottom: 10px;
}
.on-dark .label { color: var(--gold); }
.h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 400; line-height: 1.2; color: var(--maroon-deep);
}
.h2 em { font-style: italic; }
.h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem; font-weight: 600; color: var(--maroon-deep);
  margin-bottom: 0.6rem;
}
.rule { width: 44px; height: 2px; background: var(--gold); margin: 1.4rem 0; }
.body-text {
  font-size: 14.5px; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); max-width: 62ch;
}
.body-text + .body-text { margin-top: 1rem; }

/* ── HERO (home only) ── */
.hero {
  min-height: 88vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vh 5vw 8vh 8vw; position: relative; z-index: 1;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 2rem; animation: up 0.7s ease both;
}
.kicker-line { width: 32px; height: 1.5px; background: var(--gold); }
.kicker-text {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: #8A6B2C;
}
.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400; line-height: 1.15; color: var(--maroon-deep);
  animation: up 0.7s 0.08s ease both;
}
.hero-h1 em { font-style: italic; color: var(--maroon); }
.hero-rule { width: 56px; height: 2px; background: var(--gold); margin: 1.7rem 0; animation: up 0.7s 0.14s ease both; }
.hero-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); max-width: 470px; animation: up 0.7s 0.18s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2.2rem;
  animation: up 0.7s 0.24s ease both;
}
.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 3rem; animation: up 0.7s 0.3s ease both;
}
.trust-item { max-width: 150px; }
.trust-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; color: var(--maroon); line-height: 1.3;
}
.trust-label { font-size: 11px; color: var(--ink-soft); font-weight: 400; margin-top: 2px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

.hero-right {
  background: var(--maroon-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1s 0.15s ease both;
}
.hero-right-grad {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, #5A0F22 0%, var(--maroon-deep) 70%);
}
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(200,169,110,0.10); }
.ring-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.ring-2 { width: 360px; height: 360px; top: -30px; right: -30px; }
.ring-3 { width: 320px; height: 320px; bottom: -100px; left: -80px; }

.pub-emblem {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 1.8rem;
}
.emblem-tree {
  width: 150px; height: 150px;
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.emblem-tree::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(200,169,110,0.15); border-radius: 50%;
}
.emblem-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem; font-weight: 600; font-style: italic;
  color: var(--gold-pale); line-height: 1; text-align: center;
}
.emblem-sub {
  font-size: 9px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--on-dark-soft);
  margin-top: 7px; text-align: center;
}

.float-cards { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fc {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.2);
  padding: 13px 17px; backdrop-filter: blur(4px);
  animation: float 4s ease-in-out infinite;
}
.fc-1 { top: 10%; left: 5%; animation-delay: 0s; }
.fc-2 { top: 58%; right: 5%; animation-delay: 1.4s; }
.fc-3 { bottom: 10%; left: 14%; animation-delay: 2.8s; }
.fc-tag { font-size: 8px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.fc-name { font-family: 'Playfair Display', Georgia, serif; font-size: 13px; font-style: italic; color: var(--gold-pale); margin-top: 4px; }
/* The mockup let these overlap the emblem on mid widths. */
@media (max-width: 1180px) { .float-cards { display: none; } }

/* ── PAGE HEADER (inner pages) ── */
.page-head {
  background: var(--maroon-deep); position: relative; overflow: hidden;
  padding: 7vh 8vw 6vh;
}
.page-head::after {
  content: ''; position: absolute; top: -90px; right: -60px;
  width: 320px; height: 320px; border: 1px solid rgba(200,169,110,0.1); border-radius: 50%;
}
.page-head .label { color: var(--gold); position: relative; z-index: 1; }
.page-head h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 400;
  color: var(--gold-pale); line-height: 1.15; position: relative; z-index: 1;
}
.page-head h1 em { font-style: italic; }
.page-head p {
  font-size: 14.5px; font-weight: 300; line-height: 1.8;
  color: var(--on-dark); max-width: 64ch; margin-top: 1.2rem;
  position: relative; z-index: 1;
}
.crumbs {
  font-size: 11px; color: var(--on-dark-soft); margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.crumbs a { color: var(--on-dark-soft); text-decoration: none; }
.crumbs a:hover { color: var(--gold-pale); text-decoration: underline; }

/* ── VALUE STRIP ── */
.strip {
  background: var(--maroon);
  padding: 1.5rem 6vw;
  display: flex; justify-content: center; align-items: stretch;
  gap: 0; flex-wrap: wrap; position: relative;
}
.strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.strip-item { text-align: center; padding: 0 2.2rem; max-width: 220px; }
.strip-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 600; color: var(--gold-pale); line-height: 1.3;
}
.strip-l {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--on-dark-soft); margin-top: 5px;
}
.strip-sep { width: 1px; background: rgba(255,255,255,0.12); align-self: center; height: 40px; }

/* ── MISSION split ── */
.mission { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.mission-text { padding: 8vh 6vw 8vh 8vw; }
.mission-visual {
  background: var(--cream); padding: 7vh 6vw; min-height: 500px;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.mission-card {
  background: #fff; border: 1px solid var(--border); padding: 21px 23px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mission-card:hover { box-shadow: 0 8px 32px rgba(107,26,46,0.1); transform: translateX(6px); }
.mc-icon {
  width: 40px; height: 40px; flex: none; background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.mc-title { font-weight: 600; font-size: 13px; color: var(--maroon-deep); margin-bottom: 4px; }
.mc-desc { font-size: 12.5px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); }

/* ── SECTION wrappers ── */
.section { padding: 9vh 8vw; }
.section-cream { background: var(--cream); }
.section-white { background: var(--off-white); }
.section-dark { background: var(--maroon-deep); }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.see-all {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--maroon);
  text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.see-all:hover { border-color: var(--maroon); }

/* ── JOURNAL CARDS ── */
.journals-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border); border: 1.5px solid var(--border);
}
/* One journal on its own should fill the row, not leave an empty
   bordered cell beside it. */
.journals-grid-one { grid-template-columns: 1fr; }
.jcard {
  background: var(--off-white); padding: 2.3rem 2rem;
  position: relative; overflow: hidden;
  transition: background 0.25s; text-decoration: none; display: block; color: inherit;
}
.jcard:hover { background: #fff; }
.jcard-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--maroon);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.jcard:hover .jcard-accent, .jcard:focus-visible .jcard-accent { transform: scaleX(1); }
.jcard-tag {
  display: inline-block; font-size: 8.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--maroon);
  border: 1px solid rgba(107,26,46,0.25); padding: 3px 9px; margin-bottom: 1rem;
}
.jcard-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 600; color: var(--maroon-deep);
  line-height: 1.3; margin-bottom: 6px;
}
.jcard-sub {
  font-size: 11.5px; font-style: italic; font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink-soft); margin-bottom: 1rem;
}
.jcard-desc { font-size: 12.5px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1.3rem; }
.jcard-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.jcard-meta-item { font-size: 10.5px; font-weight: 400; letter-spacing: 0.04em; color: var(--ink-soft); }
.jcard-meta-item strong { color: var(--maroon); font-weight: 600; }
.jcard-arrow { position: absolute; bottom: 1.7rem; right: 1.7rem; font-size: 16px; color: var(--maroon); transition: transform 0.2s; }
.jcard:hover .jcard-arrow { transform: translate(3px, -3px); }

.jcard-wide { grid-column: span 2; }
.jcard-featured { background: var(--maroon-deep); }
.jcard-featured:hover { background: #4A1020; }
.jcard-featured .jcard-tag { color: var(--gold); border-color: rgba(200,169,110,0.35); }
.jcard-featured .jcard-name { color: var(--gold-pale); font-size: 1.45rem; }
.jcard-featured .jcard-sub { color: var(--on-dark-soft); }
.jcard-featured .jcard-desc { color: var(--on-dark); }
.jcard-featured .jcard-meta-item { color: var(--on-dark-soft); }
.jcard-featured .jcard-meta-item strong { color: var(--gold); }
.jcard-featured .jcard-arrow { color: var(--gold); }
.jcard-featured .jcard-accent { background: var(--gold); }

/* a card that is an invitation rather than a link */
.jcard-invite { background: var(--cream); }
.jcard-invite .jcard-name { color: var(--maroon); }

/* ── WHY grid ── */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border); border: 1.5px solid var(--border); margin-top: 3rem;
}
.why-card { background: var(--cream); padding: 2.3rem 1.8rem; transition: background 0.2s; }
.section-white .why-card { background: var(--off-white); }
.why-card:hover { background: #fff; }
.why-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.3rem; font-weight: 400; font-style: italic;
  color: rgba(107,26,46,0.3); line-height: 1; margin-bottom: 0.9rem;
}
.why-title { font-size: 13.5px; font-weight: 600; color: var(--maroon-deep); margin-bottom: 8px; }
.why-text { font-size: 12.5px; font-weight: 300; line-height: 1.75; color: var(--ink-soft); }

/* ── PROCESS ── */
.process-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  align-items: start; margin-top: 3rem; position: relative;
}
.process-track::before {
  content: ''; position: absolute; top: 22px; left: 10%; right: 10%;
  height: 1px; background: var(--border); z-index: 0;
}
.proc-step { text-align: center; padding: 0 0.8rem; position: relative; z-index: 1; }
.proc-dot {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--maroon); background: var(--off-white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px; font-weight: 600; color: var(--maroon);
  transition: background 0.2s, color 0.2s;
}
.section-cream .proc-dot { background: var(--cream); }
.proc-step:hover .proc-dot { background: var(--maroon); color: #fff; }
.proc-title { font-size: 12.5px; font-weight: 600; color: var(--maroon-deep); margin-bottom: 6px; }
.proc-desc { font-size: 11.5px; font-weight: 300; line-height: 1.65; color: var(--ink-soft); }

/* ── BOARD ── */
.board-group { margin-top: 3rem; }
.board-group-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--maroon); padding-bottom: 10px; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.board-grid-4 { grid-template-columns: repeat(4, 1fr); }
.board-card {
  background: #fff; border: 1px solid var(--border); padding: 1.7rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.board-card:hover { box-shadow: 0 10px 34px rgba(107,26,46,0.09); transform: translateY(-3px); }
.board-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--maroon-tint, #F5E9EE); border: 1.5px solid rgba(107,26,46,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-style: italic;
  color: var(--maroon); margin-bottom: 1rem;
}
.board-name { font-size: 14px; font-weight: 600; color: var(--maroon-deep); margin-bottom: 4px; }
.board-role {
  display: inline-block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--maroon);
  background: #F5E9EE; padding: 3px 9px; margin-bottom: 10px;
}
.board-title { font-size: 12.5px; font-weight: 400; line-height: 1.6; color: var(--ink-mid); margin-bottom: 6px; }
.board-inst {
  font-size: 12px; font-style: italic; font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink-soft); line-height: 1.55; margin-bottom: 12px;
}
.board-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.board-tag {
  font-size: 10px; color: var(--ink-soft);
  border: 1px solid var(--border); padding: 3px 8px;
}

/* ── NEWS ── */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: var(--border); border: 1.5px solid var(--border); margin-top: 3rem;
}
.news-card { background: var(--cream); padding: 2rem; transition: background 0.2s; }
.section-white .news-card { background: var(--off-white); }
.news-card:hover { background: #fff; }
.news-cat { font-size: 8.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--maroon); margin-bottom: 10px; }
.news-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-weight: 600; color: var(--maroon-deep); line-height: 1.4; margin-bottom: 10px;
}
.news-body { font-size: 12.5px; font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 10px; }
.news-date { font-size: 10.5px; color: var(--ink-soft); }

.empty-note {
  border: 1px dashed rgba(107,26,46,0.25); background: var(--cream);
  padding: 2.4rem; text-align: center; margin-top: 2rem;
}
.empty-note h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: var(--maroon-deep); margin-bottom: 8px; }
.empty-note p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; max-width: 52ch; margin: 0 auto; }

/* ── PROSE (inner content pages) ── */
.prose { max-width: 72ch; }
.prose h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 600; color: var(--maroon-deep);
  margin: 2.6rem 0 0.9rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; font-weight: 600; color: var(--maroon); margin: 1.8rem 0 0.6rem; font-family: 'DM Sans', sans-serif; }
.prose p { font-size: 14.5px; font-weight: 300; line-height: 1.85; color: var(--ink-mid); margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem 1.2rem; }
.prose li { font-size: 14.5px; font-weight: 300; line-height: 1.8; color: var(--ink-mid); margin-bottom: 0.5rem; }
.prose strong { font-weight: 600; color: var(--maroon-deep); }
.prose a:not(.btn) { color: var(--maroon); }
/* Buttons inside prose keep their own colours -- see the note above:
   a bare `.prose a` rule outranks .btn-fill and hides the label. */

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.callout {
  border-left: 3px solid var(--gold); background: var(--cream);
  padding: 1.4rem 1.6rem; margin: 1.8rem 0;
}
.callout p { margin: 0; font-size: 13.5px; line-height: 1.8; color: var(--ink-mid); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.contact-box { background: var(--cream); border: 1px solid var(--border); padding: 2rem; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-ico {
  width: 34px; height: 34px; flex: none; background: var(--maroon);
  display: flex; align-items: center; justify-content: center;
}
.contact-k { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.contact-v { font-size: 14px; color: var(--maroon-deep); font-weight: 500; word-break: break-word; }
.contact-v a { color: var(--maroon); text-decoration: none; }
.contact-v a:hover { text-decoration: underline; }

/* ── CTA ── */
.cta {
  background: var(--maroon); padding: 8vh 8vw;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3.5rem;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border: 1px solid rgba(200,169,110,0.12); border-radius: 50%;
}
.cta-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); font-weight: 400;
  color: var(--gold-pale); line-height: 1.2; position: relative; z-index: 1;
}
.cta-h2 em { font-style: italic; }
.cta-sub { font-size: 13.5px; font-weight: 300; color: var(--on-dark); margin-top: 0.8rem; position: relative; z-index: 1; max-width: 60ch; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; flex: none; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer.site-footer { background: var(--night); padding: 6vh 8vw 3vh; position: relative; }
footer.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; }
.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; font-style: italic; font-weight: 600; color: var(--gold-pale);
}
.footer-brand-desc { font-size: 12.5px; font-weight: 300; line-height: 1.8; color: var(--on-dark-soft); margin-bottom: 1.4rem; max-width: 46ch; }
.footer-issn { font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-faint); }
.footer-col-head { font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 12.5px; font-weight: 300; color: var(--on-dark-soft); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-pale); text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,0.15); padding-top: 1.8rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 11.5px; color: var(--on-dark-faint); }
.footer-right { font-size: 10.5px; color: var(--on-dark-faint); letter-spacing: 0.08em; }
.footer-right a { color: var(--on-dark-soft); text-decoration: none; }
.footer-right a:hover { color: var(--gold-pale); }

/* ── MOBILE DRAWER ── */
.overlay { display: none; position: fixed; inset: 0; z-index: 500; background: rgba(0,0,0,0.55); }
.overlay.open { display: block; }
.drawer {
  position: absolute; left: 0; top: 0; bottom: 0; width: min(300px, 86vw);
  background: var(--off-white); padding: 1.6rem 1.4rem;
  transform: translateX(-100%); transition: transform 0.3s ease; overflow-y: auto;
}
.overlay.open .drawer { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1.1rem; border-bottom: 1px solid var(--border); margin-bottom: 1.2rem;
}
.drawer-close { background: none; border: none; font-size: 18px; color: var(--ink-mid); cursor: pointer; padding: 6px 10px; }
.drawer-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px; font-weight: 500; color: var(--ink-mid); text-decoration: none;
}
.drawer-item:hover { color: var(--maroon); }
.drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 1.8rem; }
.drawer-actions .btn { width: 100%; }

/* ── ANIMATIONS ── */
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .journals-grid { grid-template-columns: repeat(2, 1fr); }
  .jcard-wide { grid-column: span 2; }
  .board-grid, .board-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 7vh 7vw; }
  .hero-right { min-height: 340px; }
  .mission { grid-template-columns: 1fr; }
  .mission-text { padding: 6vh 7vw; }
  .mission-visual { padding: 4vh 7vw 6vh; min-height: auto; }
  .journals-grid { grid-template-columns: 1fr; }
  .jcard-wide { grid-column: span 1; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-track::before { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; gap: 2rem; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-right { display: none; }
  .burger { display: flex; }
  .strip { gap: 0.6rem; }
  .strip-sep { display: none; }
  .section { padding: 7vh 7vw; }
  .page-head { padding: 6vh 7vw 5vh; }
}
@media (max-width: 600px) {
  .why-grid, .board-grid, .board-grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .strip-item { padding: 0.5rem 1rem; }
  .hero-trust { gap: 14px; }
  .trust-divider { display: none; }
}

/* Nothing the reveal script hid may ever stay hidden in print. */
@media print {
  .mission-card, .jcard, .why-card, .proc-step, .board-card, .news-card, .strip-item {
    opacity: 1 !important; transform: none !important;
  }
  .topbar, nav.site-nav, .overlay, .cta-actions, .burger { display: none !important; }
  body { background: #fff; }
}
