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

:root {
  --bg: #0d0d0d;
  --paper: #e8e4dd;
  --muted: rgba(232,228,221,0.3);
  --faint: rgba(232,228,221,0.07);
  --accent: #7ab8d4;
  --accent-dim: rgba(122,184,212,0.25);
}

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--paper);
  font-family: 'Geist Mono', monospace;
  font-weight: 300;
  font-size: 13px;
  overflow-x: hidden;
}

/* ── Nav (shared inner pages) ── */
.inner-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--faint);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  transition: color 0.3s;
  padding: 0;
  text-decoration: none;
}
.back-btn:hover { color: var(--paper); }
.back-btn span { transition: transform 0.3s; display: inline-block; }
.back-btn:hover span { transform: translateX(-4px); }

.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,228,221,0.4);
  text-decoration: none;
}

/* ── Page body ── */
.page-body { max-width: 900px; margin: 0 auto; padding: 72px 48px 100px; }

/* ── Eyebrow / title ── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--accent); }

.page-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.page-title em { font-style: italic; color: var(--accent); }

.page-header { margin-bottom: 72px; }

/* ── Shared buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(232,228,221,0.1);
  padding: 10px 20px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  font-family: inherit;
  font-weight: 300;
  background: transparent;
  cursor: pointer;
}
.btn:hover { color: var(--paper); border-color: rgba(232,228,221,0.25); }
.btn.accent { color: var(--accent); border-color: var(--accent-dim); }
.btn.accent:hover { background: rgba(122,184,212,0.06); border-color: rgba(122,184,212,0.5); }
.btn span { transition: transform 0.3s; display: inline-block; }
.btn:hover span { transform: translateX(4px); }

/* ── Animations ── */
@keyframes up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.fade-in { animation: up 0.6s ease both; }
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.12s; }
.fade-in:nth-child(3) { animation-delay: 0.19s; }
.fade-in:nth-child(4) { animation-delay: 0.26s; }

/* ── Orb status ── */
.orb {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #6ee7b7;
  animation: breathe 3s ease infinite;
  display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .inner-nav { padding: 20px 24px; }
  .page-body { padding: 48px 24px 80px; }
}
