@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

:root {
  --cream: #f5f0e8;
  --ink: #000000;
  --rust: #b5451b;
  --muted: #7a6e64;
  --border: #d9d0c4;
  --warm-white: #ffffff;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}

.site-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

a {}
nav {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rust); }

.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 5.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.page-hero h1 em { font-style: italic; color: var(--rust); }

.content-section { max-width: 680px; }
.content-section p { margin-bottom: 1.25rem; }
.content-section a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-top: 3.5rem;
/* 
  border-top: 1px solid var(--border);
 */
}

.item-group { margin-bottom: 3.5rem; }
.item-group h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.item { padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.item:first-of-type { border-top: 1px solid var(--border); }
.item-title { font-weight: 400; margin-bottom: 0.25rem; line-height: 1.5; }
.item-meta { font-size: 0.85rem; color: var(--muted); }
.item a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.item a:hover { color: var(--rust); }

.media-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.media-item:first-of-type { border-top: 1px solid var(--border); }

.media-source {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
  padding-top: 0.15rem;
  line-height: 1.4;
}

.media-title { font-size: 1rem; line-height: 1.5; margin-bottom: 0.2rem; }
.media-title a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }
.media-date { font-size: 0.8rem; color: var(--muted); }

.video-wrap { margin: 2rem 0 3rem; }
.video-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0 6rem;
}

.home-intro h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.home-intro h1 em { font-style: italic; color: var(--rust); }

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 2rem;
}

.bio-snippet { max-width: 55ch; margin-bottom: 2.5rem; }

.home-nav-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.home-nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--rust);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.home-nav-links a:hover { color: var(--rust); }

.home-photo img {
  width: 100%;
  border-radius: 2px;
  filter: sepia(8%) contrast(1.05);
}

.photo-caption {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.contact-line {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-line a { color: var(--rust); text-decoration: none; }

footer {
  margin-top: 6rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer p { font-size: 0.78rem; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--rust); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.7s ease both; }
.fade-up-2 { animation: fadeUp 0.7s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.24s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.36s ease both; }

@media (max-width: 740px) {
  .home-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .home-photo { order: -1; max-width: 240px; }
  .nav-links { gap: 1.2rem; }
  .media-item { grid-template-columns: 1fr; gap: 0.25rem; }
}
