/* ============================================================
   Bekbohem — warm-darkroom palette
   Geist Sans + Geist Mono · warm off-black · ivory text · terracotta accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --bg:          #0f0d0b;   /* warm near-black, film-base */
  --bg-2:        #17140f;   /* card surface, one step up */
  --bg-3:        #1e1a15;   /* elevated */
  --ink:         #f4efe6;   /* warm ivory */
  --ink-2:       #c8bfb0;   /* softer body text */
  --ink-3:       #857c6c;   /* metadata / mono captions */
  --ink-4:       #4a4238;   /* dim */
  --hair:        #2a241d;   /* warm hairline */
  /* cinematic teal & orange — the classic film grade */
  --accent:      oklch(70% 0.12 45);            /* warm: terracotta / orange */
  --accent-dim:  oklch(70% 0.12 45 / 0.6);
  --cool:        oklch(70% 0.08 200);           /* cool: filmic teal */
  --cool-dim:    oklch(70% 0.08 200 / 0.6);
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ---------- utilities ---------- */
.mono { font-family: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace; }
.container { max-width: 80rem; margin: 0 auto; padding: 0 2rem; }
.hairline { border: 0; border-top: 1px solid var(--hair); margin: 0; }

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
}

/* ---------- header ---------- */
.site-header {
  background: var(--bg);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(15,13,11,0.85);
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.wordmark {
  font-size: 0.75rem;
  text-transform: lowercase;
  letter-spacing: 0.4em;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.3s;
}
.wordmark:hover { opacity: 0.7; }
.wordmark:hover .logo-mark circle:last-of-type { stroke: var(--ink); }

/* lockup — rangefinder mark + wordmark */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}
.logo-mark {
  display: block;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.logo-lockup:hover .logo-mark { transform: rotate(45deg); }
.logo-word {
  font-size: 0.75rem;
  text-transform: lowercase;
  letter-spacing: 0.4em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  transition: opacity 0.3s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a:hover { color: var(--accent); opacity: 1; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

/* language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  padding-left: 2rem;
  border-left: 1px solid var(--hair);
  margin-left: 1rem;
}
.lang-toggle button {
  background: none;
  border: 0;
  color: var(--ink-4);
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.32em;
  font-size: 10px;
  font-family: 'Geist Mono', monospace;
  transition: color 0.3s;
}
.lang-toggle button:hover { color: var(--ink-2); }
.lang-toggle button.active { color: var(--ink); }
.lang-toggle .sep { color: var(--ink-4); }

/* mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 5.75rem;
    right: 0;
    left: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 1.75rem;
    padding: 2.5rem 2rem 3rem;
    border-top: 1px solid var(--hair);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 14px; }
  .lang-toggle {
    border-left: 0;
    padding-left: 0;
    margin-left: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--hair);
    width: 100%;
  }
  .nav-mobile-toggle { display: block; }
}

/* ---------- page transitions ---------- */
.route {
  display: none;
  animation: fadeIn 0.5s cubic-bezier(.4,0,.2,1);
}
.route.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* fade-up on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 900ms ease, transform 900ms cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- HOME ---------- */
.home-hero {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.home-hero .h1 {
  margin-left: 8%;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.hero-frame {
  position: relative;
  width: 84%;
  aspect-ratio: 16 / 8;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--hair);
  background: var(--bg-2);
}
.hero-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  filter: brightness(0.98);
}
.hero-frame img.on { opacity: 1; }
.hero-frame .hero-meta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  justify-content: space-between;
  color: var(--cool);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  mix-blend-mode: normal;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-frame .hero-meta span:first-child { color: var(--accent); }

@media (max-width: 640px) {
  .home-hero .h1 { margin-left: 0; margin-bottom: 3rem; }
  .hero-frame { width: 100%; aspect-ratio: 4 / 5; }
}

/* featured strip on home */
.featured-strip {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
}
.featured-strip .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 3rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 800px) {
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}
@media (max-width: 520px) {
  .featured-grid { grid-template-columns: 1fr; }
}

.featured-card {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: opacity 0.4s;
}
.featured-card:hover { opacity: 0.6; }
.featured-card .thumb {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  overflow: hidden;
  margin-bottom: 1rem;
}
.featured-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.6,.2,1);
}
.featured-card:hover .thumb img { transform: scale(1.03); }
.featured-card .meta {
  display: flex;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cool);
}
.featured-card .meta span:last-child { color: var(--accent-dim); }
.featured-card .title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.25rem;
  color: var(--ink);
}

.home-cta {
  text-align: center;
  margin-top: 5rem;
}
.home-cta a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-4);
  padding-bottom: 4px;
  transition: opacity 0.3s, border-color 0.3s;
}
.home-cta a:hover { opacity: 0.7; border-color: var(--ink); }

/* ---------- WORK INDEX ---------- */
.page-head {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.page-head h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}
.page-head .kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 2rem;
}

.work-list {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 2rem 8rem;
}
.work-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr 6rem;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hair);
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.4s;
  position: relative;
}
.work-row:last-child { border-bottom: 1px solid var(--hair); }
.work-row:hover { opacity: 0.7; }
.work-row .idx {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-4);
}
.work-row .title {
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.work-row .medium {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cool);
}
.work-row .year {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--accent-dim);
  text-align: right;
}
.work-row:hover .title { color: var(--accent); }
/* hover preview image */
.work-row .preview {
  position: absolute;
  top: 50%;
  right: 12rem;
  width: 240px;
  height: 300px;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(.2,.6,.2,1);
  overflow: hidden;
  z-index: 2;
}
.work-row .preview img { width: 100%; height: 100%; object-fit: cover; }
.work-row:hover .preview {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 800px) {
  .work-row { grid-template-columns: 2rem 1fr 4rem; gap: 1rem; }
  .work-row .medium { display: none; }
  .work-row .preview { display: none; }
}

/* ---------- PROJECT DETAIL ---------- */
.project-hero {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.project-back {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 3rem;
  transition: color 0.3s;
}
.project-back:hover { color: var(--ink); }

.project-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 2rem;
}
.project-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 4rem;
}
.project-meta-row > div {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.project-meta-row .l { color: var(--cool); display: block; margin-bottom: 0.4rem; }
.project-meta-row .v { color: var(--ink); }
@media (max-width: 640px) {
  .project-meta-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.project-summary {
  max-width: 44rem;
  margin: 0 auto 5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-2);
  text-wrap: pretty;
}

.project-frames {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}
.project-frame {
  margin-bottom: 5rem;
}
.project-frame img {
  width: 100%;
  height: auto;
  background: var(--bg-2);
}
.project-frame .cap {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.project-frame .cap span:first-child { color: var(--ink-2); }
.project-frame .cap span:last-child  { color: var(--cool); }
/* alternate layout: odd frames narrower */
.project-frame.narrow { max-width: 60%; margin-left: auto; margin-right: auto; }
.project-frame.left   { max-width: 60%; margin-right: auto; margin-left: 0; }
@media (max-width: 800px) {
  .project-frame.narrow, .project-frame.left { max-width: 100%; }
}

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid var(--hair);
}
.project-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.project-nav a:hover { opacity: 0.6; }
.project-nav .spacer { flex: 1; }

/* ---------- ABOUT ---------- */
.about-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 800px) {
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
.about-portrait {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-body p {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  text-wrap: pretty;
}
.about-facts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}
.about-facts .f-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 0.4rem;
}
.about-facts .f-value {
  font-size: 0.95rem;
  color: var(--ink);
}

/* ---------- JOURNAL ---------- */
.journal-list {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 2rem 8rem;
}
.journal-item {
  display: grid;
  grid-template-columns: 5rem 1fr 6rem;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-top: 1px solid var(--hair);
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.4s;
}
.journal-item:last-child { border-bottom: 1px solid var(--hair); }
.journal-item:hover { opacity: 0.7; }
.journal-item .date {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cool);
  padding-top: 0.5rem;
}
.journal-item .loc {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dim);
  padding-top: 0.5rem;
  text-align: right;
}
.journal-item:hover .j-title { color: var(--accent); }
.journal-item .j-title {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.journal-item .j-excerpt {
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 300;
  line-height: 1.55;
  max-width: 40rem;
  margin: 0;
}
@media (max-width: 800px) {
  .journal-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .journal-item .loc { text-align: left; }
}

.journal-entry {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}
.journal-entry .meta {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
}
.journal-entry .meta span:first-child { color: var(--cool); }
.journal-entry .meta span:last-child  { color: var(--accent); }
.journal-entry h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 3rem;
  text-wrap: pretty;
}
.journal-entry .cover {
  margin: 0 0 3rem;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  overflow: hidden;
}
.journal-entry .cover img { width: 100%; height: 100%; object-fit: cover; }
.journal-entry p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 1.75rem;
  text-wrap: pretty;
}

/* ---------- CONTACT ---------- */
.contact-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
}
@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-lede h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 2rem;
}
.contact-lede p {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
  max-width: 22rem;
  margin: 0 0 3rem;
  text-wrap: pretty;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.contact-direct a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  transition: opacity 0.3s;
  width: fit-content;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 2px;
}
.contact-direct a:hover { opacity: 0.7; border-color: var(--ink); }
.contact-direct .l {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.4rem;
  display: block;
}
.contact-social {
  padding-top: 2rem;
  border-top: 1px solid var(--hair);
  display: flex;
  gap: 2rem;
}
.contact-social a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-social a:hover { color: var(--ink); }

/* form */
.contact-form h2 {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 400;
  margin: 0 0 2.5rem;
}
.field { margin-bottom: 2rem; }
.field label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 0.75rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--ink-4);
  padding: 0.5rem 0;
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  resize: vertical;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%23857c6c' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}
.field select option { background: var(--bg); color: var(--ink); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--ink); }
.field textarea { min-height: 6rem; line-height: 1.5; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.submit-btn {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 1rem 2.5rem;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.submit-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.form-sent {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 2rem 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--hair);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  width: 100%;
}
.site-footer .col {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.site-footer .col a { color: var(--ink-2); text-decoration: none; }
.site-footer .col a:hover { color: var(--accent); }
.foot-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-3); }

/* ---------- page-transition overlay ---------- */
.route-cover {
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  transition: opacity 220ms ease;
}
.route-cover.on { opacity: 1; pointer-events: auto; }
