@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --bg: #0c0c0c;
  --text: #d8d8d8;
  --text-dim: #888;
  --text-bright: #e8e8e8;
  --border: #1e1e1e;
  --hover: #161616;
  --green: #4ec9b0;
}

[data-theme="light"] {
  --bg: #f4f4ef;
  --text: #444;
  --text-dim: #aaa;
  --text-bright: #1a1a1a;
  --border: #ddd;
  --hover: #eaeae4;
  --green: #2a7a68;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

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

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 0 0;
}

.nav-right {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-right a {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-right a:hover { color: var(--green); }

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  padding: 0.15rem 0.45rem;
  transition: color 0.2s, border-color 0.2s;
}

.theme-toggle:hover { color: var(--text-bright); border-color: var(--text-dim); }

/* ── HERO (home) ── */
.hero {
  padding: 8rem 0 6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-name {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-bright);
  margin-bottom: 3rem;
}

.hero-bio {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  max-width: 480px;
}

.hero-bio .hl { color: var(--green); }

/* ── NOW grid ── */
.now { padding: 5rem 0; border-top: 1px solid var(--border); }

.section-label::before { content: '// '; color: var(--green); }

.section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}

.now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.now-cell {
  background: var(--bg);
  padding: 1.75rem;
  transition: background 0.2s;
}

.now-cell:hover { background: var(--hover); }

.now-cell h3 {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.now-cell p {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── DOGS / FAMILY ── */
.dogs {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.dogs-label::before { content: '// '; color: var(--green); }

.dogs-label {
  font-size: 0.55rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.dogs-names {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.dogs-sub {
  font-size: 0.55rem;
  color: var(--text-dim);
}

.dogs-sub .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* ── INTERVIEW LIST ── */
.page-header {
  padding: 6rem 0 3rem;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-bright);
  margin-bottom: 1.25rem;
}

.page-intro {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.8;
}

.interview-list {
  padding: 2rem 0 6rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.interview-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: padding 0.2s;
}

.interview-item:hover { padding-left: 0.75rem; }

.interview-meta {
  font-size: 0.55rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.interview-meta::before { content: '// '; color: var(--green); }

.interview-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.interview-subject {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── INTERVIEW DETAIL ── */
.interview-header {
  padding: 6rem 0 3rem;
}

.interview-date {
  font-size: 0.55rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.interview-date::before { content: '// '; color: var(--green); }

.interview-h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-bright);
  margin-bottom: 1.5rem;
}

.interview-intro {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 1rem;
}

.interview-body {
  padding: 2rem 0 5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}

.interview-body .q {
  color: var(--green);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.interview-body .q:first-child { margin-top: 0; }

.interview-body .a-label {
  color: var(--text-bright);
  font-weight: 500;
  margin-top: 1.5rem;
  display: block;
}

.interview-body p { margin-bottom: 1rem; }

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.6rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.back-link:hover { color: var(--green); }

.back-link::before { content: '← '; }

/* ── FOOTER ── */
footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left { font-size: 0.55rem; color: var(--text-dim); }

.footer-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-links a:hover { color: var(--green); }

.footer-links a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .page { padding: 0 1.5rem; }
  nav { padding-top: 2rem; }
  .hero { padding: 5rem 0 4rem; }
  .now { padding: 3.5rem 0; }
  .now-grid { grid-template-columns: 1fr; }
  .page-header { padding: 4rem 0 2rem; }
  .interview-header { padding: 4rem 0 2rem; }
  .nav-right { gap: 1.1rem; }
  footer { flex-direction: column; gap: 0.75rem; }
}

/* ── FADE ── */
.fade {
  opacity: 0;
  transform: translateY(6px);
  animation: up 0.6s ease forwards;
}

.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }

@keyframes up { to { opacity: 1; transform: translateY(0); } }

