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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: #0e0e0e;
  color: #e8e6e0;
  line-height: 1.7;
}

section {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #2e2e2e;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: #c8a96e;
}

.hero p {
  font-size: 17px;
  color: #888;
  max-width: 520px;
}

.interview {
  border-bottom: 1px solid #2e2e2e;
}

.interview h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 8px;
}

.interview-desc {
  color: #888;
  margin-bottom: 24px;
}

.video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #2e2e2e;
}

.video-box video,
.video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.no-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 13px;
  letter-spacing: 1px;
}

.transcript {
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
}

.transcript summary {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #c8a96e;
  list-style: none;
  user-select: none;
}

.transcript summary::-webkit-details-marker { display: none; }
.transcript summary::after { content: ' ↓'; }
.transcript[open] summary::after { content: ' ↑'; }

.transcript p {
  padding: 16px 18px;
  border-top: 1px solid #2e2e2e;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}

.qa-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin-bottom: 32px;
}

.qa-item {
  border-bottom: 1px solid #2e2e2e;
}

.qa-item summary {
  padding: 18px 0;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s;
}

.qa-item summary::-webkit-details-marker { display: none; }
.qa-item summary:hover { color: #c8a96e; }

.qa-item summary span {
  color: #c8a96e;
  font-size: 18px;
  transition: transform 0.25s;
  display: inline-block;
}

.qa-item[open] summary span {
  transform: rotate(180deg);
}

.qa-item p {
  padding: 0 0 18px;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}

footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 12px;
  color: #444;
  border-top: 1px solid #2e2e2e;
}
