/* =========================================================
   PUBLICATIONS — minimalist premium edition
   Restraint over ornament. Hairline borders, almost-invisible
   glass surfaces, generous whitespace, restrained gold accents.
   ========================================================= */

/* Shared section accent: thin gold rule that grows on hover/reveal */
:root {
  --pub-line:    rgba(201,168,76,0.45);
  --pub-line-on: var(--gold-500);
  --pub-surface: rgba(255,255,255,0.03);
  --pub-border:  rgba(255,255,255,0.08);
  --pub-border-on: rgba(201,168,76,0.4);
}

/* ---------- HERO ---------- */
.pub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(110px, 12vh, 130px) 0 clamp(60px, 8vh, 100px);
  background: linear-gradient(135deg, var(--blue-900) 0%, #0c3a68 50%, var(--blue-800) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
}
.pub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.pub-hero__bg-image {
  position: absolute;
  inset: -4%;
  background-image: url('../images/appointment-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  filter: blur(8px) saturate(1.1);
  animation: pub-ken-burns 32s ease-in-out infinite alternate;
}
.pub-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(24,103,166,0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,46,80,0.5) 0%, rgba(10,46,80,0.4) 50%, rgba(10,46,80,0.7) 100%);
}
@keyframes pub-ken-burns {
  0%   { transform: scale(1.04) translate(0, 0); }
  50%  { transform: scale(1.10) translate(-1%, -0.5%); }
  100% { transform: scale(1.06) translate(1%, 0.5%); }
}

.pub-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.pub-hero__text {
  text-align: left;
  max-width: 560px;
}
.pub-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 999px;
  color: var(--gold-300);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.pub-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 10px var(--gold-500);
  animation: pub-pulse 2.4s ease-in-out infinite;
}
@keyframes pub-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

.pub-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 22px;
}
.pub-hero__line {
  display: block;
  padding-bottom: 0.1em;
  white-space: nowrap;
  word-spacing: 0.12em;
  color: var(--white);
  min-height: 1.12em;
}
.pub-hero__line.is-typing::after,
.pub-hero__line.is-done::after {
  content: '|';
  display: inline-block;
  margin-left: 4px;
  font-weight: 300;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  animation: pub-caret-blink 0.85s step-end infinite;
  transform: translateY(-2px);
}
.pub-hero__line--gold.is-typing::after,
.pub-hero__line--gold.is-done::after {
  color: var(--gold-500);
  -webkit-text-fill-color: var(--gold-500);
}
@keyframes pub-caret-blink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.pub-hero__line--gold {
  color: var(--gold-500);
  -webkit-text-fill-color: var(--gold-500);
}
.pub-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 0 32px;
  line-height: 1.7;
}

/* Hero metric strip — flat, hairline-divided */
.pub-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pub-hero__chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pub-hero__chip:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.pub-hero__chip strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pub-hero__chip strong sup {
  font-size: 0.55em;
  color: var(--gold-300);
  margin-left: 2px;
}
.pub-hero__chip span {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ---------- MARQUEE ---------- */
.pub-marquee {
  position: relative;
  background: #03192f;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0 26px;
  overflow: hidden;
}
.pub-marquee__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 16px;
}
.pub-marquee__label-line {
  height: 1px;
  width: 50px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.6) 100%);
}
.pub-marquee__label-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.6) 0%, transparent 100%);
}
.pub-marquee__label-text {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.pub-marquee__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.pub-marquee__track {
  display: inline-flex;
  flex-wrap: nowrap;
  animation: pub-marquee-scroll 28s linear infinite;
  will-change: transform;
}
.pub-marquee:hover .pub-marquee__track { animation-play-state: paused; }
.pub-marquee__row {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
  padding-right: 26px;
  white-space: nowrap;
}
.pub-marquee__item {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.pub-marquee__sep {
  font-size: 0.85rem;
  color: var(--gold-500);
  flex-shrink: 0;
  opacity: 0.7;
}
@keyframes pub-marquee-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ---------- STATS ---------- */
.pub-stats {
  position: relative;
  padding: clamp(60px, 8vh, 100px) 0;
  background: #05223e;
  color: var(--white);
}
.pub-stats__bg { display: none; }
.pub-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.pub-stats__card {
  position: relative;
  padding: 32px 26px 28px;
  border-radius: 14px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  text-align: left;
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
}
.pub-stats__card::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 1px;
  background: var(--gold-500);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.pub-stats__card:hover {
  transform: translateY(-6px);
  border-color: var(--pub-border-on);
  background: rgba(255,255,255,0.05);
}
.pub-stats__card:hover::before { transform: scaleX(1); }

.pub-stats__icon {
  width: 32px;
  height: 32px;
  margin: 0 0 22px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--gold-300);
  transition: transform 0.5s var(--ease-out), color 0.3s ease;
}
.pub-stats__card:hover .pub-stats__icon {
  color: var(--gold-500);
  transform: translateY(-2px);
}
.pub-stats__icon svg { width: 100%; height: 100%; display: block; }

.pub-stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
  background: none;
  -webkit-text-fill-color: var(--white);
}
.pub-stats__number sup {
  font-size: 0.5em;
  color: var(--gold-300);
  margin-left: 2px;
  vertical-align: super;
}
.pub-stats__label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.pub-stats__rule { display: none; }

/* ---------- INTRO ---------- */
.pub-intro {
  position: relative;
  padding: clamp(80px, 10vh, 120px) 0;
  background: #082a4a;
  color: var(--white);
}
.pub-intro__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.pub-intro__eyebrow { color: var(--gold-300); }
.pub-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--white);
  margin: 14px 0 28px;
}
.pub-intro__lede {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.78;
  color: rgba(255,255,255,0.74);
  margin: 0;
}
.pub-intro__lede em {
  color: var(--gold-300);
  font-style: italic;
  font-weight: 500;
}
.pub-intro__lede strong {
  color: var(--white);
  font-weight: 700;
}

/* ---------- JOURNAL CARDS ---------- */
.pub-journals {
  padding: clamp(80px, 10vh, 120px) 0;
  background: #05223e;
  color: var(--white);
}
.pub-journals .section__head .section__eyebrow { color: var(--gold-300); }
.pub-journals .section__head .section__title { color: var(--white); }
.pub-journals .section__head .section__subtitle { color: rgba(255,255,255,0.6); }

.pub-journals__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.journal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  border-radius: 14px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s ease,
              background 0.4s ease;
  overflow: hidden;
  min-height: 320px;
}
.journal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 1px;
  background: var(--gold-500);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.journal-card:hover {
  transform: translateY(-6px);
  border-color: var(--pub-border-on);
  background: rgba(255,255,255,0.05);
}
.journal-card:hover::before { transform: scaleX(1); }

.journal-card__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(201,168,76,0.55);
}
.journal-card__crest {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease-out), color 0.3s ease;
}
.journal-card__crest svg { width: 100%; height: 100%; display: block; }
.journal-card:hover .journal-card__crest {
  transform: translateY(-2px);
  color: var(--gold-500);
}
.journal-card__name {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.journal-card__meta {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.journal-card__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  margin: 0 0 20px;
  flex: 1;
}
.journal-card__tag {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
}

/* ---------- RESEARCH AREAS ---------- */
.pub-areas {
  padding: clamp(80px, 10vh, 120px) 0;
  background: #082a4a;
  color: var(--white);
}
.pub-areas .section__head .section__eyebrow { color: var(--gold-300); }
.pub-areas .section__head .section__title { color: var(--white); }
.pub-areas .section__head .section__subtitle { color: rgba(255,255,255,0.6); }

.pub-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.area-card {
  position: relative;
  padding: 36px 30px 32px;
  border-radius: 14px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out),
              border-color 0.4s ease,
              background 0.4s ease;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 1px;
  background: var(--gold-500);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.area-card::after { display: none; }
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--pub-border-on);
  background: rgba(255,255,255,0.05);
}
.area-card:hover::before { transform: scaleX(1); }

.area-card__sigil {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  color: var(--gold-300);
  margin-bottom: 22px;
  transition: transform 0.5s var(--ease-out), color 0.3s ease;
}
.area-card__sigil svg { width: 100%; height: 100%; }
.area-card:hover .area-card__sigil {
  color: var(--gold-500);
  transform: translateY(-2px);
}
.area-card__count {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
  margin-bottom: 10px;
}
.area-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.area-card__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0 0 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.area-card__topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.area-card__topics li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.area-card__topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--gold-500);
}

/* ---------- TIMELINE ---------- */
.pub-timeline {
  padding: clamp(80px, 10vh, 120px) 0;
  background: #05223e;
  color: var(--white);
}
.pub-timeline .section__head .section__eyebrow { color: var(--gold-300); }
.pub-timeline .section__head .section__title { color: var(--white); }
.pub-timeline .section__head .section__subtitle { color: rgba(255,255,255,0.6); }

.timeline-wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 0 10px;
}
/* Animated SVG spine */
.timeline__spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
  pointer-events: none;
}
.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.timeline__item {
  position: relative;
  width: 50%;
  padding: 22px 50px;
  box-sizing: border-box;
}
.timeline__item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 60px;
}
.timeline__item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

/* Restrained stage badge — small, hairline, no fill */
.timeline__year {
  position: absolute;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #05223e;
  color: var(--gold-300);
  font-family: var(--font-serif);
  z-index: 3;
  border: 1px solid rgba(201,168,76,0.5);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.timeline__item:nth-child(odd) .timeline__year {
  right: -22px;
}
.timeline__item:nth-child(even) .timeline__year {
  left: -22px;
}
.timeline__year span {
  display: none;
}
.timeline__year strong {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}
.timeline__item:hover .timeline__year {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.timeline__dot { display: none; }

.timeline__card {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 100%;
  padding: 26px 28px;
  border-radius: 14px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.timeline__card::before {
  content: '';
  position: absolute;
  top: 32px;
  width: 24px;
  height: 1px;
  background: rgba(201,168,76,0.4);
}
.timeline__item:nth-child(odd) .timeline__card::before {
  right: -24px;
}
.timeline__item:nth-child(even) .timeline__card::before {
  left: -24px;
}
.timeline__card:hover {
  transform: translateY(-3px);
  border-color: var(--pub-border-on);
  background: rgba(255,255,255,0.05);
}
.timeline__era {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 12px;
  padding: 0;
  background: transparent;
  border: none;
}
.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.timeline__card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.timeline__card em { color: var(--gold-300); font-style: italic; }
.timeline__card strong { color: var(--white); }

/* Reveal animation for timeline items */
.timeline__item[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.timeline__item:nth-child(odd)[data-reveal]  { transform: translateX(-30px); }
.timeline__item:nth-child(even)[data-reveal] { transform: translateX(30px); }
.timeline__item[data-reveal].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline__item--final .timeline__year {
  background: var(--gold-500);
  color: #05223e;
  border-color: var(--gold-500);
}

/* ---------- CTA ---------- */
.pub-cta {
  position: relative;
  padding: clamp(80px, 10vh, 120px) 0;
  background: #082a4a;
  color: var(--white);
}
.pub-cta__inner { position: relative; }
.pub-cta__panel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 7vw, 72px) clamp(28px, 5vw, 56px);
  border-radius: 14px;
  background: var(--pub-surface);
  border: 1px solid var(--pub-border);
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.pub-cta__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 56px; right: 56px;
  height: 1px;
  background: var(--gold-500);
}
.pub-cta__eyebrow { color: var(--gold-300); }
.pub-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 14px 0 18px;
}
.pub-cta__desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.72;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}
.pub-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 0.95rem;
}
.btn__arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .pub-hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .pub-hero__text { margin: 0 auto; }
  .pub-hero__badge { margin-left: auto; margin-right: auto; }
  .pub-hero__line { white-space: normal; }
  .pub-hero__chips { justify-content: center; }

  .pub-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pub-journals__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pub-areas__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  /* Single-column timeline on mobile */
  .timeline__spine { left: 22px; }
  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 18px 0 18px 60px;
  }
  .timeline__item:nth-child(odd) .timeline__year,
  .timeline__item:nth-child(even) .timeline__year {
    left: 0;
    right: auto;
    top: 24px;
  }
  .timeline__item:nth-child(odd) .timeline__card::before,
  .timeline__item:nth-child(even) .timeline__card::before {
    left: -20px;
    right: auto;
  }
  .timeline__card { display: block; }
  .timeline__item[data-reveal],
  .timeline__item:nth-child(odd)[data-reveal],
  .timeline__item:nth-child(even)[data-reveal] {
    transform: translateX(-20px);
  }
  .timeline__item[data-reveal].is-visible { transform: translateX(0); }

  .pub-cta__actions { flex-direction: column; }
  .pub-cta__actions .btn { width: 100%; }

  .pub-marquee__item { font-size: 1rem; }
  .pub-hero__chip strong { font-size: 1.4rem; }
  .pub-hero__chip { padding-right: 18px; margin-right: 18px; }
}
@media (max-width: 480px) {
  .pub-stats__grid { grid-template-columns: 1fr; }
  .pub-journals__grid { grid-template-columns: 1fr; }

  .pub-hero__chips {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .pub-hero__chip {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 0 16px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .pub-hero__chip:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .pub-hero__bg-image,
  .pub-marquee__track,
  .pub-hero__badge-dot,
  .timeline__item[data-reveal] {
    animation: none !important;
  }
  .timeline__item[data-reveal] { opacity: 1; transform: none; }
}
