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

:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --ink: #1a1a1a;
  --ink-soft: #333333;
  --gray: #767676;
  --line: #e5e3df;
  --footer: #3d3631;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Shippori Mincho", "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  background: var(--white);
  color: var(--ink);
  line-height: 2;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(26,26,26,0.15); }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: all 0.5s ease;
  background: transparent;
}
header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(229,227,223,0.6);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--white);
  transition: color 0.5s ease;
}
header.scrolled .logo { color: var(--ink); }
nav ul {
  display: flex;
  list-style: none;
  gap: 34px;
}
nav a {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--white);
  transition: opacity 0.3s ease, color 0.5s ease;
}
header.scrolled nav a { color: var(--ink); }
nav a:hover { opacity: 0.65; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: 0.3s;
}
header.scrolled .menu-toggle span { background: var(--ink); }

/* ---------- Hero / Intro ---------- */
.page-hero {
  position: relative;
  min-height: 58vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 32px 0;
  color: var(--white);
  animation: fadeUp 1.4s ease 0.3s both;
}
.page-hero-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.5em;
  margin-bottom: 30px;
  opacity: 0.9;
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 58px);
  letter-spacing: 0.14em;
  margin-bottom: 40px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.page-hero-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
}
.page-hero-sub {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.12em;
  opacity: 0.92;
  font-weight: 300;
}
.page-intro {
  padding: 110px 0 70px;
  background: var(--white);
  text-align: center;
}
.page-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-intro-eyebrow,
.detail-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gray);
  margin-bottom: 22px;
  text-transform: uppercase;
}
.page-intro h2 {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.14em;
  margin-bottom: 34px;
  line-height: 1.8;
}
.page-intro p {
  font-size: 16px;
  line-height: 2.45;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.page-intro p:last-child { margin-bottom: 0; }

/* ---------- Archive ---------- */
.archive-section {
  background: var(--off-white);
  padding: 90px 0 120px;
}
.archive-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.archive-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.archive-tabs::-webkit-scrollbar { height: 4px; }
.archive-tabs::-webkit-scrollbar-thumb { background: rgba(26,26,26,0.24); }
.archive-tab {
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  min-height: 48px;
  padding: 11px 18px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.archive-tab:hover,
.archive-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.archive-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.content-card,
.empty-state {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px;
}
.content-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.content-card-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.content-card-meta span {
  border: 1px solid var(--line);
  color: var(--gray);
  display: inline-flex;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  line-height: 1.6;
  padding: 3px 9px;
}
.content-card-meta .primary-label {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.content-card-meta .important-label {
  background: #5a514a;
  border-color: #5a514a;
  color: var(--white);
}
.content-card h2 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1.85;
  margin-bottom: 18px;
}
.content-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 2.15;
  margin-bottom: 24px;
}
.content-card-list {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: auto 0 24px;
  padding-top: 18px;
}
.content-card-list li {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.9;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 28px;
}
.tag-list span {
  border-bottom: 1px solid var(--line);
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
}
.empty-state span {
  color: var(--gray);
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.35em;
  margin-bottom: 12px;
}
.empty-state p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.2;
}

/* ---------- Detail ---------- */
.detail-section {
  background: var(--off-white);
  padding: 160px 0 110px;
}
.detail-panel {
  background: var(--white);
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 880px;
  padding: 54px;
}
.detail-panel h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.8;
  margin-bottom: 26px;
}
.detail-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.detail-meta span {
  border: 1px solid var(--line);
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 3px 9px;
}
.detail-body {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 34px;
}
.detail-body p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2.35;
  margin-bottom: 22px;
}
.detail-info {
  background: var(--off-white);
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
}
.detail-info div {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}
.detail-info strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 10px;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ---------- Buttons / Closing / Footer ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  padding: 16px 32px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-line {
  background: transparent;
  color: var(--ink);
}
.btn-line:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-muted {
  background: var(--white);
  color: var(--gray);
  cursor: default;
}
.btn-muted:hover {
  background: var(--white);
  color: var(--gray);
}
.arrow {
  font-family: serif;
  font-size: 16px;
}
.closing {
  background: #1a1a1a;
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}
.closing h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 2;
  margin-bottom: 34px;
}
.closing p {
  color: rgba(255,255,255,0.78);
  line-height: 2.4;
}
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
}
footer {
  background: #2f2925;
  color: var(--white);
  padding: 70px 0 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--white);
  display: inline-block;
  margin-bottom: 18px;
}
.footer-tag-line {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  margin-bottom: 20px;
}
.footer-brand p,
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 2;
}
.footer-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  padding-top: 28px;
  text-align: center;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  header {
    padding: 20px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
  }
  body.menu-open header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo,
  header.scrolled .logo { color: var(--ink); }
  .menu-toggle { display: flex; z-index: 200; }
  .menu-toggle span,
  header.scrolled .menu-toggle span { background: var(--ink); }
  nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 150;
  }
  nav.open {
    opacity: 1;
    pointer-events: auto;
  }
  nav ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  nav a,
  header.scrolled nav a {
    color: var(--white);
    font-size: 15px;
  }
  .menu-toggle.open span { background: var(--white); }
  .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .page-hero { min-height: 54vh; }
  .page-intro { padding: 86px 0 54px; }
  .archive-section { padding: 64px 0 90px; }
  .archive-inner { padding: 0 20px; }
  .archive-tabs {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .archive-grid { grid-template-columns: 1fr; }
  .content-card { min-height: auto; padding: 28px 20px; }
  .detail-section { padding: 118px 20px 80px; }
  .detail-panel { padding: 34px 22px; }
  .btn { width: 100%; }
  .closing { padding: 90px 0; }
  .closing-actions,
  .detail-actions { flex-direction: column; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 22px; }
  .page-hero-inner { padding: 90px 22px 0; }
  .page-hero h1 {
    font-size: 31px;
    letter-spacing: 0.1em;
  }
  .page-intro-inner,
  .closing-inner { padding: 0 22px; }
  .page-intro h2 { font-size: 22px; }
  .page-intro p,
  .detail-body p {
    font-size: 14.5px;
    line-height: 2.25;
  }
  .content-card h2 { font-size: 19px; }
  .footer-inner { padding: 0 24px; }
}

/* ===========================================================
   Article-style Detail Pages (Experience / Member)
   =========================================================== */

/* ---------- content-card as anchor link ---------- */
.content-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.4s ease;
}
.content-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
  border-color: rgba(181,149,86,0.45);
}
.content-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #b59556;
  transition: gap 0.3s ease;
}
.content-card-link:hover .content-card-cta { gap: 14px; }
.content-card-cta .arrow { font-style: normal; }

/* ---------- Article Layout ---------- */
.detail-article {
  background: #ffffff;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 60px 56px;
  border: 1px solid rgba(0,0,0,0.06);
}
.detail-article-head {
  text-align: center;
  margin-bottom: 50px;
}
.detail-article-head h1 {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: #1a1a1a;
  margin: 12px 0 14px;
}
.detail-article-head .detail-meta {
  justify-content: center;
  font-size: 12.5px;
}
.detail-meta-cat {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.15em;
  font-size: 11px;
}
.detail-meta-important {
  background: #1a1a1a;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.18em;
  font-size: 10.5px;
}
.detail-article-divider {
  width: 40px;
  height: 1px;
  background: #b59556;
  opacity: 0.8;
  margin: 26px auto 28px;
}
.detail-lead {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 2.2;
  color: #333333;
  letter-spacing: 0.06em;
  max-width: 580px;
  margin: 0 auto;
}
.detail-excerpt {
  font-size: 15px;
  line-height: 2.2;
  color: #333333;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  text-align: center;
}
.detail-article-body {
  margin-bottom: 40px;
}
.detail-article-body p {
  font-size: 15px;
  line-height: 2.4;
  color: #333333;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.detail-article-body p:last-child { margin-bottom: 0; }

.detail-info {
  background: #fafaf8;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 22px 28px;
  margin-bottom: 36px;
  display: grid;
  gap: 12px;
}
.detail-info div {
  display: flex;
  gap: 18px;
  font-size: 13.5px;
  line-height: 1.95;
  align-items: baseline;
}
.detail-info strong {
  flex-shrink: 0;
  width: 110px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #767676;
  text-transform: uppercase;
}
.detail-info a {
  color: #1a1a1a;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  word-break: break-all;
}

/* ---------- Inline Note ---------- */
.detail-note {
  background: #fafaf8;
  border-left: 3px solid #b59556;
  padding: 24px 28px;
  margin-bottom: 42px;
}
.detail-note p {
  font-size: 13.5px;
  line-height: 2.1;
  color: #5a4a3f;
  letter-spacing: 0.04em;
  margin: 0;
}

/* ---------- Related Members section ---------- */
.detail-members {
  margin: 0 0 42px;
  padding: 36px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.detail-section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: #b59556;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.detail-section-title {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.6;
}
.detail-section-lead {
  font-size: 13px;
  line-height: 2;
  color: #767676;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 30px;
}
.detail-members-grid {
  display: grid;
  gap: 16px;
}
.detail-member-card {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fafaf8;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 22px 24px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.detail-member-card:hover {
  background: #ffffff;
  border-color: rgba(181,149,86,0.4);
  transform: translateY(-2px);
}
.detail-member-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06);
}
.detail-member-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-member-thumb.is-placeholder {
  background: linear-gradient(135deg, #f1ece1 0%, #e5dac3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-member-thumb.is-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #b59556;
  font-weight: 400;
}
.detail-member-body {
  flex: 1;
  min-width: 0;
}
.detail-member-role {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11.5px;
  letter-spacing: 0.3em;
  color: #b59556;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.detail-member-name {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.detail-member-bio {
  font-size: 13px;
  line-height: 1.95;
  color: #5a4a3f;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.detail-member-cta {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: #b59556;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.detail-member-cta .arrow { font-style: normal; }
.detail-member-card:hover .detail-member-cta { gap: 10px; }

/* ---------- Member Detail Page ---------- */
.detail-article-head.member-head {
  padding-top: 8px;
}
.member-detail-thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.member-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-detail-thumb.is-placeholder {
  background: linear-gradient(135deg, #f1ece1 0%, #e5dac3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-detail-thumb.is-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: #b59556;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ---------- Member Message Quote ---------- */
.detail-message {
  margin: 0 0 36px;
  padding: 32px 30px;
  background: #fafaf8;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.detail-message .detail-section-eyebrow {
  margin-bottom: 18px;
}
.detail-message blockquote {
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  line-height: 2.2;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  font-style: normal;
  margin: 0;
  padding: 0;
}
.detail-message blockquote::before { content: '「'; color: #b59556; }
.detail-message blockquote::after { content: '」'; color: #b59556; }

/* ---------- Related Experiences (on member detail) ---------- */
.detail-experiences-list {
  display: grid;
  gap: 14px;
}
.detail-experience-card {
  display: flex;
  flex-direction: column;
  background: #fafaf8;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 22px 26px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.detail-experience-card:hover {
  background: #ffffff;
  border-color: rgba(181,149,86,0.4);
  transform: translateY(-2px);
}
.detail-experience-cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #767676;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 12px;
}
.detail-experience-name {
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  line-height: 1.5;
}
.detail-experience-bio {
  font-size: 13px;
  line-height: 1.95;
  color: #5a4a3f;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ---------- Detail Actions ---------- */
.detail-article .detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .detail-article {
    padding: 40px 24px 36px;
    border-left: none;
    border-right: none;
  }
  .detail-article-head { margin-bottom: 36px; }
  .detail-article-head h1 { font-size: clamp(22px, 6vw, 26px); letter-spacing: 0.1em; }
  .detail-info { padding: 18px 20px; }
  .detail-info div { flex-direction: column; gap: 4px; }
  .detail-info strong { width: auto; }
  .detail-member-card { flex-direction: row; padding: 18px 18px; gap: 16px; }
  .detail-member-thumb { width: 64px; height: 64px; }
  .detail-member-thumb.is-placeholder span { font-size: 18px; }
  .detail-member-name { font-size: 15px; }
  .member-detail-thumb { width: 100px; height: 100px; margin-bottom: 22px; }
  .member-detail-thumb.is-placeholder span { font-size: 32px; }
  .detail-message { padding: 26px 22px; }
  .detail-message blockquote { font-size: 14px; line-height: 2.0; }
  .detail-article .detail-actions { flex-direction: column; }
  .detail-article .detail-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Closing watermark (matches other pages) ---------- */
.closing::before {
  content: 'RE:START';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(120px, 22vw, 280px);
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.closing-inner {
  position: relative;
  z-index: 2;
}
