:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --card-bg: #f2f2f0;
  --accent: #1a1a1a;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 32px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wordmark .name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.wordmark .tagline {
  font-size: 15px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  padding-bottom: 4px;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  margin: 48px 0 28px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
  padding-bottom: 24px;
}

@media (max-width: 860px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-card { display: flex; flex-direction: column; gap: 12px; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card-bg);
  cursor: pointer;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.video-frame:hover .play-button {
  background: rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%) scale(1.06);
}

.play-button svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
  fill: #fff;
}

.video-title {
  font-size: 15px;
  font-weight: 500;
}

.bio-section {
  border-top: 1px solid #e8e8e6;
  padding-top: 8px;
  margin-top: 24px;
}

.bio-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}

.bio-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bio-text p {
  max-width: 560px;
  color: #333;
  font-size: 15.5px;
}

@media (max-width: 560px) {
  .bio-content { flex-direction: column; align-items: flex-start; }
  .bio-photo { width: 110px; height: 110px; }
}

.site-footer {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding: 24px 32px 56px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid #e8e8e6;
}
