/* ==========================================================================
   URBAN REGENERATION & INDUSTRIAL HERITAGE — seminar archive
   Aesthetic: the seminar poster, extended into a website.
   Light warm-gray gallery ground, magenta pipeline accent, steel-brown ink.
   Sentence-case Swiss typography. Photographs in magenta duotone that
   develop to full colour on hover.
   Type: Schibsted Grotesk (display + text) · IBM Plex Mono (labels)
   ========================================================================== */

:root {
  --ground: #f0efec;
  --panel: #ffffff;
  --ink: #2b2523;
  --sub: #7d746c;
  --sub-40: rgba(125, 116, 108, 0.55);
  --pink: #e0186f;
  --pink-deep: #b01055;
  --line: rgba(43, 37, 35, 0.16);
  --line-soft: rgba(43, 37, 35, 0.09);
  --grotesk: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 40em;
  --duotone: grayscale(1) sepia(0.5) brightness(1.03) hue-rotate(288deg) saturate(1.7) contrast(0.98);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--grotesk);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #fff; }

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

a { color: inherit; }

/* faint print grain */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typographic primitives ---------- */

.mono {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rust, .signal, .pink { color: var(--pink); }

/* ---------- chrome ---------- */

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem var(--gutter);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
}
.topbar span:nth-child(2) { display: none; }
@media (min-width: 720px) { .topbar span:nth-child(2) { display: block; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(12px);
}

.nav-brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.nav-brand em { font-style: normal; color: var(--pink); }

.nav-links {
  display: flex;
  gap: clamp(0.8rem, 2.5vw, 2.2rem);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  overflow-x: auto;
}
.nav-links a {
  text-decoration: none;
  padding: 1rem 0;
  color: var(--sub);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a[aria-current] {
  color: var(--ink);
  border-bottom-color: var(--pink);
}

/* ---------- ticker ---------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  color: var(--pink);
  user-select: none;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 0;
}
.ticker-track span { padding: 0 1.6rem; }
.ticker-track span::after { content: "●"; margin-left: 3.2rem; font-size: 0.5em; vertical-align: 0.25em; color: var(--sub-40); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- hero (home) ---------- */

.hero {
  padding: clamp(3rem, 9vh, 6.5rem) var(--gutter) clamp(2.5rem, 6vh, 4rem);
  position: relative;
}

.hero-kicker {
  color: var(--pink);
  margin-bottom: 2.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.hero-kicker span:last-child { color: var(--sub-40); }

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 7.5vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: block;
  transform: translateY(112%);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.2s; }
.hero h1 .title { color: var(--pink); }
.hero h1 .subtitle { color: var(--sub); font-weight: 400; letter-spacing: -0.02em; }

@keyframes rise { to { transform: translateY(0); } }

.hero-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.4rem;
  margin-top: 2.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--sub);
  opacity: 0;
  animation: fade 0.8s ease 0.5s forwards;
}

@keyframes fade { to { opacity: 1; } }

/* poster pipe band */
.hero-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-band img {
  width: 100%;
  height: clamp(170px, 26vw, 340px);
  object-fit: cover;
  object-position: left center;
  transform: scale(1.01);
}

/* ---------- archive stack (home images) ---------- */

.stack-wrap { padding: clamp(3rem, 7vh, 5rem) var(--gutter) clamp(4rem, 9vh, 6.5rem); }

.stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 820px) { .stack { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; } }

.stack figure { position: relative; }
.stack figure:nth-child(1) { transform: rotate(-1deg); }
.stack figure:nth-child(2) { transform: rotate(0.7deg) translateY(clamp(0px, 3vw, 44px)); }
.stack figure:nth-child(3) { transform: rotate(-0.5deg) translateY(clamp(0px, 1.5vw, 18px)); }

.stack img {
  border: 8px solid #fff;
  outline: 1px solid var(--line);
  box-shadow: 0 22px 44px -20px rgba(43, 37, 35, 0.4);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
}
/* the photo montage develops in magenta */
.stack figure:nth-child(3) img { filter: var(--duotone); }
.stack figure:hover img { transform: scale(1.015); filter: none; }

.stack figcaption {
  margin-top: 0.8rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sub);
}
.stack figcaption::before { content: "⌖ "; color: var(--pink); }

/* ---------- sections ---------- */

.section {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vh, 4.5rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
  position: relative;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}
.section-head .label { color: var(--pink); }
.section-head .count { color: var(--sub-40); }

.section h2 {
  font-weight: 800;
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 22em;
}

.lede {
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
  max-width: var(--measure);
  color: var(--sub);
}

.faculty {
  margin-top: 2.6rem;
  max-width: 54em;
  color: var(--sub);
  font-size: 0.94rem;
  line-height: 1.95;
}
.faculty .who {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 0.9rem;
}

/* ---------- speakers index rows ---------- */

.speaker-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
  position: relative;
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.speaker-row:last-child { border-bottom: 1px solid var(--line-soft); }
.speaker-row:hover { padding-left: 1.2rem; }
.speaker-row .num { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.13em; color: var(--sub-40); }
.speaker-row:hover .num { color: var(--pink); }

.speaker-row .who { display: block; }
.speaker-row .who h3 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  transition: color 0.3s;
}
.speaker-row:hover .who h3 { color: var(--pink); }
.speaker-row .who p {
  color: var(--sub);
  font-size: 1.02rem;
  margin-top: 0.35rem;
  max-width: 44em;
}

.speaker-row .thumb {
  display: block;
  width: clamp(64px, 8vw, 108px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid #fff;
  outline: 1px solid var(--line);
}
.speaker-row .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: var(--duotone);
  transform: scale(1.05);
  transition: filter 0.45s, transform 0.6s;
}
.speaker-row:hover .thumb img { filter: none; transform: scale(1); }

@media (max-width: 640px) {
  .speaker-row { grid-template-columns: 1fr auto; }
  .speaker-row .num { display: none; }
}

/* ---------- phd grid ---------- */

.phd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.phd-card {
  text-decoration: none;
  display: block;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s, border-color 0.4s;
}
.phd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -24px rgba(43, 37, 35, 0.35);
  border-color: var(--line);
}

.phd-card .plate {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  padding: 0.7rem;
}
.phd-card .plate img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.04);
  transition: filter 0.5s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.phd-card:hover .plate img { filter: none; transform: scale(1.03); }

.phd-card .meta { display: block; padding: 1.15rem 1.2rem 1.35rem; }
.phd-card .meta .tag {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub-40);
  margin-bottom: 0.6rem;
}
.phd-card:hover .tag { color: var(--pink); }
.phd-card .meta h3 {
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.phd-card .meta p {
  font-size: 0.9rem;
  line-height: 1.4;
  min-height: 2.8em;
  color: var(--sub);
  margin-top: 0.45rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- publications ---------- */

.books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.book-card { display: grid; grid-template-columns: minmax(130px, 200px) 1fr; gap: 1.7rem; text-decoration: none; align-items: start; }
.book-card .cover {
  display: block;
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(43, 37, 35, 0.4);
}
.book-card .cover img { transition: transform 0.6s; }
.book-card:hover .cover img { transform: scale(1.02); }
.book-card h3 {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0.55rem 0 0.6rem;
  transition: color 0.3s;
}
.book-card:hover h3 { color: var(--pink); }
.book-card .authors { color: var(--sub); font-size: 0.96rem; }
.book-card .more { display: inline-block; margin-top: 1.1rem; color: var(--pink); }
.book-card .more::after { content: " →"; transition: margin-left 0.3s; }
.book-card:hover .more::after { margin-left: 6px; }

/* ---------- gallery strip (home) ---------- */

.strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.strip img {
  height: clamp(160px, 24vw, 260px);
  width: auto;
  border: 5px solid #fff;
  outline: 1px solid var(--line);
  filter: var(--duotone);
  transition: filter 0.45s;
  flex: none;
}
.strip img:hover { filter: none; }

.strip-more { margin-top: 1.6rem; }
.strip-more a {
  color: var(--pink);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
}
.strip-more a::after { content: " →"; }
.strip-more a:hover { text-decoration: underline; }

/* ---------- article pages (speaker / phd / book) ---------- */

.article-head {
  padding: clamp(2.5rem, 7vh, 5rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.article-head .watermark {
  position: absolute;
  right: -0.03em;
  top: -0.14em;
  font-weight: 800;
  font-size: clamp(9rem, 28vw, 24rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(224, 24, 111, 0.3);
  pointer-events: none;
  user-select: none;
}
.article-head .crumbs { color: var(--sub-40); margin-bottom: 2.2rem; }
.article-head .crumbs a { color: inherit; text-decoration: none; }
.article-head .crumbs a:hover { color: var(--pink); }
.article-head h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 7.5vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 12em;
  position: relative;
}
.article-head h1 em { font-style: normal; color: var(--pink); }
.article-head .lecture {
  font-weight: 500;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--pink);
  margin-top: 1.2rem;
  max-width: 30em;
  position: relative;
}
.article-head .metaline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.2rem;
  margin-top: 2.2rem;
  color: var(--sub);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 6vh, 4.5rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
}
@media (max-width: 860px) { .article-body { grid-template-columns: 1fr; } }

.article-text { max-width: 37em; font-size: 1.06rem; line-height: 1.72; }
.article-text p { margin-bottom: 1.5em; }
.article-text p:last-child { margin-bottom: 0; }
.article-body > .article-text > p:first-of-type::first-letter {
  font-weight: 800;
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 0.04em 0.14em 0 0;
  color: var(--pink);
}
.article-text .bio-label { color: var(--pink); display: block; margin-bottom: 1.1rem; }

.article-body .article-plates,
.part-body .article-plates {
  align-self: start;
}
@media (min-width: 861px) {
  .article-body .article-plates,
  .part-body:not(.plates-only) .article-plates {
    position: sticky;
    top: 5.5rem;
  }
}

.article-plates figure { margin-bottom: 2.2rem; cursor: zoom-in; }
.article-plates img {
  border: 8px solid #fff;
  outline: 1px solid var(--line);
  box-shadow: 0 24px 48px -22px rgba(43, 37, 35, 0.4);
}
.article-plates figcaption {
  margin-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sub);
}
.article-plates figcaption::before { content: "⌖ "; color: var(--pink); }
.article-plates figure:hover figcaption::after { content: " — click to enlarge"; color: var(--pink); }

/* contents index on multi-part essays */
.toc {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  max-width: 34em;
  position: relative;
}
.toc a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.45rem 0;
  text-decoration: none;
  color: var(--sub);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.25s, padding-left 0.3s;
}
.toc a:last-child { border-bottom: 0; }
.toc a span { color: var(--pink); flex: none; }
.toc a:hover { color: var(--ink); padding-left: 0.5rem; }

/* multi-part essay sections */
.part {
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter) clamp(3rem, 7vh, 5rem);
  scroll-margin-top: 4.5rem;
}
.part-head {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}
.part-head h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  max-width: 24em;
}
@media (max-width: 640px) { .part-head { grid-template-columns: 1fr; gap: 0.5rem; } }

.part-body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.part-body.text-only { grid-template-columns: 1fr; }
.part-body.plates-only { grid-template-columns: 1fr; }
.part-body.plates-only .article-plates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 460px));
  gap: clamp(1.5rem, 3vw, 3rem);
}
@media (max-width: 860px) {
  .part-body { grid-template-columns: 1fr; }
}

/* align part text with the heading column on wide screens */
@media (min-width: 641px) {
  .part-body:not(.plates-only) { padding-left: 7rem; }
}
@media (max-width: 860px) {
  .part-body:not(.plates-only) { padding-left: 0; }
}

.buy-btn {
  display: inline-block;
  margin-top: 1.3rem;
  padding: 0.95rem 1.8rem;
  background: var(--pink);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.buy-btn:hover { background: var(--pink-deep); }

/* prev / next archive navigation */
.pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.pager a {
  padding: 2rem var(--gutter);
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}
.pager a:hover { background: var(--panel); }
.pager a + a { border-left: 1px solid var(--line); text-align: right; }
.pager .dir { color: var(--sub-40); display: block; margin-bottom: 0.5rem; }
.pager a:hover .dir { color: var(--pink); }
.pager .name {
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
}

/* ---------- gallery page ---------- */

.gallery-grid {
  columns: 3 300px;
  column-gap: 1.2rem;
  padding: 0 var(--gutter) clamp(3rem, 7vh, 5rem);
}
.gallery-grid figure {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  cursor: zoom-in;
}
.gallery-grid img {
  border: 6px solid #fff;
  outline: 1px solid var(--line);
  filter: var(--duotone);
  transition: filter 0.45s;
  width: 100%;
}
.gallery-grid figure:hover img { filter: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(43, 37, 35, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }

/* ---------- footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  background: var(--pink);
  color: #fff;
  padding: clamp(3rem, 7vh, 5rem) var(--gutter) 2rem;
}
.footer .big {
  font-weight: 800;
  font-size: clamp(2rem, 5.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 15em;
}
.footer .big em { font-style: italic; font-weight: 400; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  margin-top: 3.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.footer-meta a { color: inherit; text-decoration: none; }
.footer-meta a:hover { color: #fff; text-decoration: underline; }

/* ---------- scroll reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero h1 .line > span { transform: none; }
  .hero-sub { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
