/* ── FONTS ── */
@font-face {
  font-family: 'NeutraText';
  src: url('assets/fonts/NeutraText-BookAlt.otf') format('opentype');
}

@font-face {
  font-family: 'NeutraTextDemi';
  src: url('assets/fonts/NeutraText-DemiAlt.otf') format('opentype');
}

@font-face {
  font-family: 'NeutraTextLightItalic';
  src: url('assets/fonts/NeutraText-LightItalicAlt.otf') format('opentype');
}

@font-face {
  font-family: 'NeutraTextLight';
  src: url('assets/fonts/NeutraText-LightAlt.otf') format('opentype');
}

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

html { scrollbar-gutter: stable; }

body {
  font-family: 'NeutraText', Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  min-height: 100vh;
  padding: 48px;
  padding-top: 80px; /* nav height only — columns control their own top gap */
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;                  /* ← nav height */
  background: #ffffff;
  border-bottom: 1px solid #111111;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 0 48px 14px;
  font-family: 'NeutraText', Arial, sans-serif;
  color: #111111;
}

.nav-left {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  justify-self: start;
}

.nav-name {
  font-family: 'NeutraTextDemi', Arial, sans-serif;
  font-size: 24px;        /* ← name font size */
  color: #111111;
  white-space: nowrap;
  justify-self: center;
}

.nav-link {
  font-size: 16px;        /* ← Artworks / Bio font size */
  color: #111111;
  text-decoration: none;
}

.nav-link:hover {
  opacity: 0.5;
}

.nav-right {
  display: flex;
  align-items: flex-end;
  gap: 16px;             /* ← gap between icons */
  justify-self: end;
}

.nav-icon {
  display: flex;
  align-items: flex-end;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.nav-icon:hover {
  opacity: 0.5;
}

.nav-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

/* ── PAGER (work / project pages) ── */
.nav-pager {
  display: flex;
  align-items: flex-end;
  gap: 24px;             /* ← gap between << Previous and Next >> */
}

.nav-pager a {
  font-size: 16px;
  color: #111111;
  text-decoration: none;
}

.nav-pager a:hover {
  opacity: 0.5;
}

.nav-divider {
  width: 1px;
  height: 16px;
  background: #111111;
  align-self: flex-end;
  margin: 0 16px;        /* ← gap on each side of the divider */
}

/* ── PROJECT LAYOUT ── */
.project {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.project-left {
  position: sticky;
  top: 80px;            /* sticks just under the nav */
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 38px;   /* ← left column top gap — edit here */
}

.project-title {
  font-family: 'NeutraTextDemi', Arial, sans-serif;
  font-size: 32px;
}

.project-desc {
  font-size: 16px;
  line-height: 1.6;
}

.project-meta {
  font-size: 16px;
  line-height: 1.6;
}

.project-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;   /* ← right column top gap — edit here */
}

.project-right img {
  width: 100%;
  display: block;
}

.project-caption {
  font-family: 'NeutraTextLightItalic', Arial, sans-serif;
  font-size: 16px;
  text-align: right;
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── CONTENT SECTIONS (right column) ── */
.content-text {
  font-family: 'NeutraTextLight', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
