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

:root {
  --fg:   #f0ede8;
  --mono: 'Courier Prime', 'Courier New', Courier, monospace;
}

html, body {
  background: #0d0d0d;
  color: var(--fg);
  font-family: var(--mono);
}


/* ── Nav ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
  z-index: 50;
}

.brand {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 1; }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-link:hover   { opacity: 1; }
.nav-link--active { opacity: 1; }


/* ── Photo wrapper ─────────────────────────────────────────── */
.contact-photo-wrap {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
}

.contact-photo {
  display: block;
  height: 100%;
  width: auto;
}

/* ── Content (overlaid on photo) ───────────────────────────── */
.contact-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.instagram-handle {
  font-family: 'Times New Roman', 'Georgia', serif;
  font-weight: 200;
  font-style: italic;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  letter-spacing: 0.1em;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.25s;
}

.instagram-handle:hover {
  opacity: 1;
}


/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  nav { padding: 24px; }
}


/* ── Site credit ───────────────────────────────────────────── */
.site-credit {
  text-align: left;
  padding: 40px 20px 40px 40px;
  font-family: 'Times New Roman', 'Georgia', serif;
  font-weight: 200;
  font-style: italic;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  opacity: 0.45;
}
.site-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

/* ── Page transition overlay ───────────────────────────────── */
#page-transition {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
