@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --c-deep: #000927;
  --c-blue: #006ce8;
  --f-display: 'Cormorant Garamond', serif;
  --f-base: 'Noto Sans JP', sans-serif;
}

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

body {
  background: var(--c-deep);
  color: #fff;
  font-family: var(--f-base);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 9, 39, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header__logo img { height: 40px; }

/* ===== LAYOUT ===== */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.voice-detail {
  padding: 56px 0 80px;
}

/* ===== BACK LINK ===== */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 48px;
  transition: color 0.2s;
}
.back-home::before { content: '←'; font-size: 0.9em; }
.back-home:hover { color: #fff; }

/* ===== SECTION HEADER ===== */
.text-center { text-align: center; }
.section-label {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}
.voice__intro {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.9;
}

/* divider under section label */
.text-center::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px auto 0;
}

/* ===== HERO ===== */
.voice-detail__hero {
  margin-bottom: 40px;
}
.voice-detail__hero > img {
  width: 25%;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
}
.voice-detail__season {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
}
.voice-detail__quote {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-bottom: 14px;
}
.voice-detail__role {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  border-left: 2px solid var(--c-blue);
  padding-left: 10px;
  margin-bottom: 0;
}

/* ===== BODY TEXT ===== */
.voice-detail__body {
  font-size: 0.9rem;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 24px;
}
.voice-detail__body p + p {
  margin-top: 1.2em;
}

/* ===== PHOTOS ===== */
.voice-detail__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 52px;
}
.voice-detail__photos img {
  border-radius: 3px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ===== NAV ===== */
.voice-detail__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.voice-detail__nav a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.2s;
}
.voice-detail__nav a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.voice-detail__nav a.active {
  border-color: var(--c-blue);
  color: #fff;
  background: rgba(0, 108, 232, 0.18);
}
/* HOME link */
.voice-detail__nav a[href="../index.html"] {
  width: auto;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--c-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 32px 16px 24px;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.footer__social img {
  width: 28px;
  height: 28px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.footer__social img:hover { opacity: 1; }
.footer__park-link {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__park-link:hover { color: rgba(255, 255, 255, 0.7); }
.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .site-header { padding: 10px 16px; }
  .site-header__logo img { height: 32px; }
  .voice-detail { padding: 40px 0 60px; }
  .voice-detail__photos { grid-template-columns: 1fr 1fr; }
  .voice-detail__body { padding-left: 14px; }
}
