/* ============================================
   EBIN ANTO — Portfolio
   bold designer-folio · single page
   palette: cream + near-black + #ff4d00
   ============================================ */

:root {
  --bg: #f4f1ea;
  --bg-2: #e8e3d6;
  --fg: #0e0d0a;
  --fg-dim: #0e0d0a99;
  --fg-mute: #0e0d0a66;
  --fg-faint: #0e0d0a14;
  --accent: #ff4d00;
  --line: #0e0d0a1f;

  --f-display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Inter Tight', system-ui, sans-serif;
  --f-italic: 'Instrument Serif', Georgia, serif;

  --max: 1640px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.4;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  cursor: none;
  font-feature-settings: "ss01", "cv11";
}

@media (hover: none) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
em, .italic { font-family: var(--f-italic); font-style: italic; font-weight: 400; }

::selection { background: var(--accent); color: var(--bg); }

/* ============================================
   GRAIN OVERLAY
   ============================================ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), background .2s ease;
  will-change: transform;
}

.cursor.is-hover {
  width: 72px; height: 72px;
  background: var(--accent);
}

.cursor-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bg);
  opacity: 0;
  transition: opacity .25s ease;
  white-space: nowrap;
}

.cursor.is-hover .cursor-label { opacity: 1; }

@media (hover: none) { .cursor { display: none; } }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  color: var(--fg);
}

.nav-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-mark sup { font-size: 9px; vertical-align: super; opacity: .7; }

.mark-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .6; }
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  align-items: center;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--bg);
  transition: color .2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  padding: 8px 14px !important;
  border-radius: 999px;
  margin: -4px -8px -4px 0;
}

.nav-cta::after { display: none !important; }

.nav-clock {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}

.clock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}

@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-clock { font-size: 11px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 var(--gutter);
  display: grid;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}

.hero-meta {
  position: absolute;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--fg-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-meta-tl { top: 100px; left: var(--gutter); }
.hero-meta-tr { top: 100px; right: var(--gutter); text-align: right; }
.hero-meta-bl { bottom: 80px; left: var(--gutter); align-items: center; }
.hero-meta-br { bottom: 80px; right: var(--gutter); text-align: right; align-items: center; gap: 12px; transition: color .2s ease; }
.hero-meta-br:hover { color: var(--accent); }

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}

.meta-arrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  animation: bounce 2s var(--ease-out) infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(80px, 17vw, 300px);
  line-height: .88;
  letter-spacing: -.04em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-variation-settings: "opsz" 96, "wdth" 100;
}

.hero-title .line {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2vw, 36px);
  position: relative;
}

.hero-title .line-2 { align-self: flex-end; }
.hero-title .line-3 { align-self: flex-start; padding-left: clamp(10px, 4vw, 80px); }
.hero-title .line-4 { align-self: flex-end; padding-right: clamp(10px, 4vw, 60px); }

.hero-title .word {
  display: inline-block;
  transition: transform .5s var(--ease-out), color .3s ease;
  will-change: transform;
}

.hero-title .word:hover { color: var(--accent); transform: translateY(-6px) rotate(-1deg); }

.hero-title .italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--accent);
}

.hero-title .sub {
  font-size: clamp(40px, 7vw, 130px);
  line-height: 1;
  margin-top: 8px;
  color: var(--fg-dim);
  font-weight: 500;
  letter-spacing: -.03em;
}

.hero-title .sub .word:hover { color: var(--accent); }
.hero-title .small { font-weight: 500; }

.hero-title .dash {
  font-family: var(--f-display);
  display: inline-block;
  width: clamp(40px, 6vw, 100px);
  height: 6px;
  background: var(--accent);
  border-radius: 3px;
  align-self: center;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .hero-meta-tl, .hero-meta-tr { top: 70px; font-size: 10px; }
  .hero-meta-bl, .hero-meta-br { bottom: 30px; font-size: 10px; }
  .hero-title .line-3 { padding-left: 0; }
  .hero-title .line-4 { padding-right: 0; }
}

/* ---------- Sticker badge ---------- */
.sticker {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  pointer-events: none;
}

.sticker svg {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}

.sticker-text {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  fill: var(--fg);
}

.sticker-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--accent);
  animation: bounce 2s var(--ease-out) infinite;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .sticker { width: 110px; height: 110px; bottom: 110px; }
  .sticker-text { font-size: 11px; }
  .sticker-arrow { font-size: 24px; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  background: var(--accent);
  color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -.025em;
  animation: marquee 30s linear infinite;
}

.marquee-track .dot { font-size: .5em; opacity: .5; transform: translateY(-2px); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEAD
   ============================================ */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 0 var(--gutter);
  margin-bottom: 56px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border-top: 1px solid var(--fg);
  padding-top: 28px;
}

.section-num {
  color: var(--accent);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.section-name { color: var(--fg); }

.section-count { margin-left: auto; font-style: italic; font-family: var(--f-italic); font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--fg-mute); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  padding: 0 var(--gutter);
  align-items: end;
}

.about-lead {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.03em;
  max-width: 16ch;
  font-variation-settings: "opsz" 72;
}

.about-lead em {
  color: var(--accent);
  font-size: 1.05em;
  letter-spacing: -.02em;
}

.about-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  font-size: 14px;
  align-self: end;
}

.stack h3 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.stack p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   WORK GRID — asymmetric
   ============================================ */
.work {
  padding: 120px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  padding: 0 var(--gutter);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .6s var(--ease-out), opacity .4s ease;
}

.card-a { grid-column: 1 / span 7; }
.card-b { grid-column: 8 / span 5; margin-top: 80px; }
.card-c { grid-column: 1 / span 4; }
.card-d { grid-column: 5 / span 8; margin-top: 60px; }
.card-e { grid-column: 1 / span 8; }
.card-f { grid-column: 9 / span 4; margin-top: 40px; }

.card-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
  transition: transform .8s var(--ease-out), filter .6s ease;
  color: var(--bg);
}

.card-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: .45;
}

.card-cover-num {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  color: inherit;
  opacity: .85;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}

.card-cover-title {
  position: relative;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 96px);
  line-height: .9;
  letter-spacing: -.04em;
  z-index: 2;
  font-variation-settings: "opsz" 96;
}

.card-cover-title em {
  font-family: var(--f-italic);
  font-size: .95em;
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
}

.card:hover .card-cover {
  transform: scale(.98) rotate(-.4deg);
  filter: saturate(1.15) contrast(1.05);
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding-top: 10px;
  border-top: 1px solid var(--fg);
  align-items: baseline;
}

.card-title {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.card-role {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-mute);
  letter-spacing: .04em;
  font-style: italic;
  font-family: var(--f-italic);
  font-size: 16px;
  grid-column: 1 / 2;
}

.card-year {
  grid-row: 1 / span 2;
  grid-column: 2 / 3;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  align-self: start;
}

.work-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 80px var(--gutter) 0;
  padding: 18px 28px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.work-all:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .work-grid { display: flex; flex-direction: column; gap: 48px; }
  .card { margin-top: 0 !important; grid-column: 1 / -1 !important; }
}

/* ============================================
   WRITING
   ============================================ */
.writing {
  padding: 100px 0;
}

.writing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 var(--gutter);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px 32px;
  border: 1px solid var(--fg);
  border-radius: 8px;
  background: transparent;
  transition: background .4s ease, transform .6s var(--ease-out);
}

.article:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-4px);
}

.article:hover .article-date,
.article:hover .article-excerpt,
.article:hover .article-cta { color: var(--bg); }

.article:hover .article-title em { color: var(--bg); }

.article-date {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}

.article-title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 42;
}

.article-title em { color: var(--accent); }

.article-excerpt {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 18px;
}

.article-cta {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
}

@media (max-width: 900px) {
  .writing-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   VISUAL
   ============================================ */
.visual { padding: 80px 0; }

.visual-marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--fg);
  border-bottom: 1px solid var(--fg);
  background: var(--bg-2);
}

.visual-track {
  display: inline-flex;
  gap: 22px;
  white-space: nowrap;
  animation: marquee 38s linear infinite reverse;
  padding: 0 14px;
  align-items: center;
}

.vchip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  background: var(--vc, var(--accent));
  color: var(--bg);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 64px);
  letter-spacing: -.025em;
  border-radius: 999px;
  white-space: nowrap;
}

.vchip-out {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--fg);
}

.visual-cta {
  padding: 48px var(--gutter) 0;
  text-align: center;
  font-size: 16px;
}

.visual-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  font-family: var(--f-body);
  font-weight: 500;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.visual-cta a:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience { padding: 100px 0; }

.timeline {
  list-style: none;
  padding: 0 var(--gutter);
}

.t-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 200px;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--fg);
  align-items: baseline;
  transition: padding .4s var(--ease-out), color .3s ease;
  position: relative;
}

.t-row:last-child { border-bottom: 1px solid var(--fg); }

.t-row:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.t-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 0;
  background: var(--accent);
  transition: width .5s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.t-row:hover::before { width: 100%; }

.t-row:hover * { color: var(--bg) !important; }

.t-year {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
}

.t-role {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 40;
}

.t-co {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 34px);
  color: var(--accent);
  letter-spacing: -.01em;
}

.t-loc {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: right;
}

@media (max-width: 900px) {
  .t-row { grid-template-columns: 1fr; gap: 8px; }
  .t-loc { text-align: left; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0 80px;
  position: relative;
}

.contact-headline {
  padding: 0 var(--gutter);
  font-family: var(--f-display);
  font-size: clamp(60px, 12vw, 220px);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: 60px;
  font-variation-settings: "opsz" 96;
}

.contact-headline .word { display: inline-block; margin-right: .25em; }
.contact-headline .italic { color: var(--accent); }

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 var(--gutter);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 80px);
  letter-spacing: -.03em;
  color: var(--accent);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
  transition: gap .4s var(--ease-out), color .3s ease;
}

.contact-mail:hover { gap: 32px; }

.contact-mail-arrow {
  font-family: var(--f-body);
  font-weight: 700;
  transition: transform .4s var(--ease-out);
}

.contact-mail:hover .contact-mail-arrow {
  transform: translate(8px, -8px);
}

.socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 80px var(--gutter) 0;
  border-top: 1px solid var(--fg);
}

.socials li {
  flex: 1 1 200px;
  border-bottom: 1px solid var(--fg);
  border-right: 1px solid var(--fg);
}

.socials li:last-child { border-right: none; }

.socials a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: -.03em;
  transition: background .3s ease, color .3s ease;
}

.socials a:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 720px) {
  .socials li { flex: 1 1 50%; }
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  padding: 32px var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border-top: 1px solid var(--fg);
}

.foot a { color: var(--accent); }
.foot a:hover { text-decoration: underline; }

/* ============================================
   REVEAL — JS-driven
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
