/* ============================================================
   Seneca Widvey — shared styles
   Base: "Impact / Wire Math" direction (warm bone, Anton + Inter)
   ============================================================ */

:root {
  --bg: #f0ebe2;
  --ink: #141210;
  --ink-soft: #7d766b;
  --line: #d9d2c4;
  --accent: #e8541e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.display { font-family: "Anton", "Arial Narrow", sans-serif; }

/* ---------- Nav ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
  transition: background .35s, box-shadow .35s, padding .35s;
}
nav.scrolled {
  background: rgba(240, 235, 226, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 16px; padding-bottom: 16px;
}
nav .logo {
  font-family: "Anton", sans-serif; font-size: 16px; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
nav ul { display: flex; gap: 32px; list-style: none; }
nav a {
  color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; transition: color .2s;
}
nav a:hover, nav a.active { color: var(--accent); }

/* ---------- Hero (index: wire-math scroll choreography) ---------- */
.hero-track { height: 400vh; position: relative; }
.hero { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#webgl { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-type { position: absolute; left: 48px; bottom: 40px; z-index: 3; text-align: left; }
.hero-type h1 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(72px, 14.5vw, 220px);
  letter-spacing: 0; line-height: 0.86; text-transform: uppercase;
}
.hero-type h1 .row2 { color: var(--accent); }
.hero-meta {
  position: absolute; bottom: 48px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  text-align: right;
}
.hero-meta .big-idx { font-family: "Anton", sans-serif; font-size: 15px; color: var(--ink); }
.phase-caption {
  position: absolute; top: 50%; right: 48px; transform: translateY(-50%); z-index: 3;
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
  writing-mode: vertical-rl; opacity: 0; transition: opacity .5s;
}

/* ---------- Marquee ---------- */
.marquee-wrap { background: var(--ink); color: var(--bg); overflow: hidden; padding: 18px 0; transform: rotate(-1.2deg) scale(1.02); }
.marquee { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: mq 22s linear infinite; }
.marquee span { font-family: "Anton", sans-serif; font-size: 22px; letter-spacing: .06em; text-transform: uppercase; }
.marquee span em { font-style: normal; color: var(--accent); margin: 0 10px; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: 150px 48px; max-width: 1320px; margin: 0 auto; }
.kicker {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  color: var(--accent); margin-bottom: 30px;
}

/* ---------- Page hero (interior pages like About) ---------- */
.page-hero { position: relative; padding: 200px 48px 90px; max-width: 1320px; margin: 0 auto; }
.page-hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(64px, 11vw, 170px); line-height: .9; text-transform: uppercase;
  position: relative; z-index: 2;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .crumb {
  font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 26px;
}
#mini-webgl {
  position: absolute; top: 50%; right: 48px; transform: translateY(-46%);
  width: min(40vw, 540px); height: min(40vw, 540px); pointer-events: none;
}

/* ---------- About page ---------- */
.about-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.portrait {
  position: relative; border: 2px solid var(--ink); aspect-ratio: 4/5; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(20,18,16,.05) 18px 19px),
    var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait .ph { font-family: "Anton", sans-serif; font-size: 15px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); text-align: center; line-height: 2; }
.portrait .corner { position: absolute; font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--accent); z-index: 2; }
.portrait .corner.tl { top: 12px; left: 14px; }
.portrait .corner.br { bottom: 12px; right: 14px; }
.about-copy h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(34px, 4.6vw, 64px); line-height: 1.02; text-transform: uppercase; letter-spacing: .005em;
  margin-bottom: 30px;
}
.about-copy h2 em { font-style: normal; color: var(--accent); }
.about-copy p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.about-copy p b { color: var(--ink); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--ink); padding: 8px 16px;
  transition: background .25s, color .25s;
}
.chip:hover { background: var(--ink); color: var(--bg); }
.chip.hot { border-color: var(--accent); color: var(--accent); }
.chip.hot:hover { background: var(--accent); color: #fff; }

/* ---------- Point of view (About, dark band) ---------- */
.pov-quote {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(32px, 4.6vw, 62px); line-height: 1.12;
  text-transform: uppercase; letter-spacing: .005em;
}
.pov-quote em { font-style: normal; color: var(--accent); }
.dark-band .pov-quote { color: var(--bg); }
.dark-band .stats { border-top-color: rgba(240, 235, 226, 0.45); margin-top: 84px; }
.dark-band .stat { border-left-color: rgba(240, 235, 226, 0.16); }
.dark-band .stat .n { color: var(--bg); }
.dark-band .stat .l { color: #8a8478; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); margin-top: 70px; }
.stat { padding: 34px 26px 0; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .n { font-family: "Anton", sans-serif; font-size: clamp(44px, 6vw, 84px); line-height: 1; }
.stat .n sup { font-size: .45em; color: var(--accent); }
.stat .l { margin-top: 10px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

/* ---------- Education (About) ---------- */
.edu-list { border-top: 2px solid var(--ink); }
.edu-item {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: baseline; gap: 32px;
  padding: 30px 0; border-bottom: 1px solid var(--line);
}
.edu-item .num { font-family: "Anton", sans-serif; font-size: 15px; color: var(--ink-soft); }
.edu-item .title {
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(24px, 3vw, 42px); line-height: 1.05; letter-spacing: .005em;
}
.edu-item .tag { font-size: 12px; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; text-align: right; }
.edu-item .tag em { font-style: normal; color: var(--accent); }

/* ---------- Work ---------- */
.work-list { border-top: 2px solid var(--ink); }
.work-item {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 32px;
  padding: 38px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.work-item .num { font-family: "Anton", sans-serif; font-size: 15px; color: var(--ink-soft); }
.work-item .title {
  font-family: "Anton", sans-serif; text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 64px); line-height: 1; letter-spacing: .005em;
  transition: transform .35s cubic-bezier(.22,1,.36,1), color .25s;
}
.work-item:hover .title { transform: translateX(18px); color: var(--accent); }
.work-item .tag { font-size: 12px; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }

/* ---------- Projects page ---------- */
section.project { padding: 110px 48px 60px; }
.proj-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.proj-meta .kicker { margin-bottom: 0; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border: 2px solid var(--ink); padding: 5px 12px; color: var(--ink);
}
.badge.active { border-color: var(--accent); color: var(--accent); }
.badge.coming { border-style: dashed; border-color: var(--ink-soft); color: var(--ink-soft); }
.proj-title {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(38px, 5.2vw, 72px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .005em; margin-bottom: 28px;
}
.proj-title em { font-style: normal; color: var(--accent); }
.proj-lead { color: var(--ink-soft); font-size: 16px; line-height: 1.85; max-width: 78ch; margin-bottom: 26px; }
.proj-h3 { font-family: "Anton", sans-serif; font-size: 26px; text-transform: uppercase; letter-spacing: .01em; margin: 8px 0 14px; }
.proj-notes { list-style: none; border-top: 2px solid var(--ink); max-width: 900px; margin-top: 14px; }
.proj-notes li {
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; line-height: 1.6; color: var(--ink-soft); display: flex; gap: 16px;
}
.proj-notes li::before { content: "→"; color: var(--accent); font-weight: 700; }
.proj-q {
  font-family: "Anton", sans-serif; font-size: clamp(22px, 2.9vw, 38px); line-height: 1.22;
  text-transform: uppercase; letter-spacing: .005em;
  border-left: 4px solid var(--accent); padding-left: 26px; margin: 0 0 30px;
}
.index-link { text-decoration: none; color: inherit; }
.index-link .title { transition: transform .35s cubic-bezier(.22,1,.36,1), color .25s; display: inline-block; }
.index-link:hover .title { color: var(--accent); transform: translateX(12px); }
.project .caps { margin-top: 24px; }
.project .chips { margin-top: 10px; }

/* ---------- Project accordion (FAQ-style) ---------- */
.acc-list { border-top: 2px solid var(--ink); margin-top: 30px; }
.acc { border-bottom: 1px solid var(--line); }
.acc-head {
  display: grid; grid-template-columns: 90px 1fr auto 44px; align-items: center; gap: 32px;
  width: 100%; padding: 36px 0; background: none; border: none; cursor: pointer;
  text-align: left; color: inherit; font: inherit;
}
.acc-head .num { font-family: "Anton", sans-serif; font-size: 15px; color: var(--ink-soft); }
.acc-head .title {
  font-family: "Anton", "Arial Narrow", sans-serif; text-transform: uppercase;
  font-size: clamp(28px, 3.8vw, 54px); line-height: 1.05; letter-spacing: .005em;
  transition: transform .35s cubic-bezier(.22,1,.36,1), color .25s;
}
.acc-head:hover .title, .acc.open .acc-head .title { color: var(--accent); }
.acc-head:hover .title { transform: translateX(14px); }
.acc-head .tag { font-size: 12px; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; text-align: right; }
.acc-head .tag em { font-style: normal; color: var(--accent); }
.acc-icon {
  font-family: "Anton", sans-serif; font-size: 30px; line-height: 1; color: var(--accent);
  justify-self: end; transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.acc.open .acc-icon { transform: rotate(45deg); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .6s cubic-bezier(.22,1,.36,1); }
.acc-inner { padding: 8px 0 56px 122px; }
.acc-inner .caps { margin-top: 26px; }
.acc-inner .chips { margin-top: 8px; }
@media (max-width: 800px) {
  .acc-head { grid-template-columns: 44px 1fr 34px; gap: 16px; }
  .acc-head .tag { display: none; }
  .acc-inner { padding-left: 0; }
}

/* ---------- Blog band (full-bleed dark section) ---------- */
.dark-band { max-width: none; background: var(--ink); padding: 120px 0 110px; }
.dark-band .blog-inner { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.blog-title {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(38px, 5.2vw, 72px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .005em; color: var(--bg);
  margin-bottom: 46px;
}
.blog-title em { font-style: normal; color: var(--accent); }
.car-viewport { overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
.car-viewport::-webkit-scrollbar { display: none; }
.car-track { display: flex; gap: 48px; }
.car-empty { font-size: 14px; color: #8a8478; padding: 24px 0; }
.post-card {
  flex: 0 0 330px; border-top: 2px solid rgba(240, 235, 226, 0.35); padding: 26px 0 6px;
  display: flex; flex-direction: column; gap: 14px; scroll-snap-align: start;
  text-decoration: none; color: var(--bg);
  transition: border-color .3s;
}
.post-card:hover { border-top-color: var(--accent); }
.post-card time { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.post-card h3 { font-family: "Anton", sans-serif; font-size: 21px; line-height: 1.25; text-transform: uppercase; letter-spacing: .01em; color: var(--bg); transition: color .25s; }
.post-card:hover h3 { color: var(--accent); }
.post-card p {
  font-size: 14px; line-height: 1.7; color: #8a8478;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card .read { margin-top: auto; padding-top: 10px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.car-nav { display: flex; gap: 12px; margin-top: 38px; }
.car-btn {
  width: 52px; height: 52px; border: 2px solid rgba(240, 235, 226, 0.4); background: none;
  font-size: 20px; line-height: 1; cursor: pointer; color: var(--bg);
  transition: background .25s, color .25s, border-color .25s;
}
.car-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.dark-band .social-pill { border-color: rgba(240, 235, 226, 0.4); color: var(--bg); }
.dark-band .social-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Elsewhere / links ---------- */
.links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.link-card {
  border: 2px solid var(--ink); padding: 36px 32px; text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 64px 1fr auto; gap: 24px; align-items: center;
  transition: background .3s, color .3s, transform .35s cubic-bezier(.22,1,.36,1);
}
.link-card:hover { background: var(--ink); color: var(--bg); transform: translateY(-4px); }
.link-card:hover .sub { color: #b5aea2; }
.link-card .logo-box {
  width: 64px; height: 64px; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-family: "Anton", sans-serif; font-size: 20px; overflow: hidden;
}
.link-card .logo-box img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.link-card h3 { font-family: "Anton", sans-serif; font-size: 24px; text-transform: uppercase; letter-spacing: .01em; }
.link-card .sub { font-size: 13px; color: var(--ink-soft); margin-top: 6px; transition: color .3s; }
.link-card .arrow { font-size: 26px; color: var(--accent); }
.socials { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.social-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--ink); text-decoration: none; color: var(--ink);
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 26px; transition: background .25s, color .25s;
}
.social-pill:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- Speaking spotlight (Ideas page) ---------- */
#speaking.dark-band { padding: 110px 0 120px; }
#speaking .blog-title { margin-bottom: 70px; }
.talk-spot { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.talk-venue { display: block; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.talk-title {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 3.4vw, 48px); line-height: 1.08;
  text-transform: uppercase; letter-spacing: .005em; color: var(--bg);
  margin-bottom: 20px;
}
.talk-desc { font-size: 15px; line-height: 1.8; color: #9a948a; max-width: 46ch; }
.talk-photos { display: flex; gap: 30px; align-items: flex-start; justify-content: flex-end; }
.print-wrap { flex: 0 1 auto; }
.print-wrap:nth-child(1) { transition-delay: 0s; }
.print-wrap:nth-child(2) { margin-top: 56px; transition-delay: .15s; }
.print-wrap:nth-child(3) { margin-top: 112px; transition-delay: .3s; }
@property --rot { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.print {
  --rot: -2.4deg;
  position: relative; width: clamp(170px, 15.5vw, 240px); aspect-ratio: 3/4;
  border: 2px solid var(--bg); background: #201d19; overflow: hidden;
  transform: rotate(var(--rot));
  transition: --rot .45s cubic-bezier(.22,1,.36,1);
  animation: print-float 7s ease-in-out infinite;
}
.print-wrap:nth-child(2) .print { --rot: 1.8deg; animation-delay: -2.3s; }
.print-wrap:nth-child(3) .print { --rot: -1.4deg; animation-delay: -4.6s; }
.print:hover { --rot: 0deg; z-index: 2; }
.print img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform .6s cubic-bezier(.22,1,.36,1); }
.print:hover img { transform: scale(1.06); }
@keyframes print-float {
  0%, 100% { transform: rotate(var(--rot)) translateY(0); }
  50% { transform: rotate(var(--rot)) translateY(-12px); }
}
.print .corner { position: absolute; top: 10px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--accent); z-index: 2; }
.print .ph-label { display: none; }
.print.empty .ph-label {
  display: flex; position: absolute; inset: 0; align-items: center; justify-content: center;
  padding: 12px; text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #6d675d;
}
@media (prefers-reduced-motion: reduce) {
  .print { animation: none; }
  .marquee { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Studios (two big cards) ---------- */
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 44px; }
.studio-card {
  border: 2px solid var(--ink); background: var(--bg); color: var(--ink);
  padding: 54px 48px 46px; min-height: 540px;
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.studio-card:hover { transform: translateY(-6px); }
.studio-card.dark { background: var(--ink); color: var(--bg); }
.studio-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.studio-logo {
  width: 84px; height: 84px; border: 2px solid currentColor;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.studio-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.studio-label { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.studio-card h2 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(30px, 3.4vw, 48px); line-height: 1.06;
  text-transform: uppercase; letter-spacing: .005em;
}
.studio-card h2 em { font-style: normal; color: var(--accent); }
.studio-name { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.studio-body { font-size: 15px; line-height: 1.8; color: var(--ink-soft); max-width: 46ch; }
.studio-card.dark .studio-body { color: #9a948a; }
.studio-cta { margin-top: auto; padding-top: 28px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); transition: letter-spacing .3s; }
.studio-card:hover .studio-cta { letter-spacing: .2em; }

/* ---------- Capabilities ---------- */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cap { border: 2px solid var(--ink); padding: 40px 32px; position: relative; transition: background .3s, color .3s; }
.cap:hover { background: var(--ink); color: var(--bg); }
.cap:hover p { color: #b5aea2; }
.cap .idx { font-family: "Anton", sans-serif; font-size: 15px; color: var(--accent); margin-bottom: 40px; }
.cap h3 { font-family: "Anton", sans-serif; font-size: 26px; text-transform: uppercase; margin-bottom: 12px; letter-spacing: .01em; }
.cap p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); transition: color .3s; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--bg); padding: 150px 48px 50px; }
footer .inner { max-width: 1320px; margin: 0 auto; }
footer .big {
  font-family: "Anton", sans-serif;
  font-size: clamp(64px, 13vw, 210px); line-height: .9; text-transform: uppercase;
  text-decoration: none; color: var(--bg); display: block;
}
footer .big em { font-style: normal; color: var(--accent); }
footer .big:hover em { color: var(--bg); }
footer .big:hover { color: var(--accent); }
footer .meta { display: flex; justify-content: space-between; margin-top: 100px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: #8a8478; }
footer .meta a { color: inherit; text-decoration: none; margin-left: 24px; }
footer .meta a:hover { color: var(--bg); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  nav { padding: 18px 24px; }
  section { padding: 100px 24px; }
  footer { padding: 100px 24px 40px; }
  .page-hero { padding: 150px 24px 60px; }
  #mini-webgl { display: none; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .links-grid { grid-template-columns: 1fr; }
  .caps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
  .stat { border-left: none; padding-left: 0; }
  .work-item { grid-template-columns: 50px 1fr; }
  .work-item .tag { display: none; }
  .edu-item { grid-template-columns: 50px 1fr; gap: 8px 24px; }
  .edu-item .tag { grid-column: 2; text-align: left; }
  .post-card { flex-basis: 76vw; }
  .dark-band .blog-inner { padding: 0 24px; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-card { min-height: 0; padding: 40px 28px 36px; }
  .talk-spot { grid-template-columns: 1fr; gap: 44px; }
  .talk-photos { justify-content: flex-start; flex-wrap: wrap; gap: 20px; }
  .print-wrap:nth-child(2) { margin-top: 32px; }
  .print-wrap:nth-child(3) { margin-top: -10px; }
  .print { width: 40vw; }
  .hero-type { left: 24px; bottom: 28px; }
  .hero-meta { display: none; }
}
