/* Lawyer profile page — standalone styles */
.lawyer-nav {
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--paper-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.lawyer-page {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(60px, 8vw, 100px);
  background: var(--paper);
  min-height: 70vh;
}

.lawyer-page__back {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--on-paper-mute);
  text-decoration: none;
  margin: 32px 0 48px;
}

/* ===== Hero ===== */
.lawyer-page__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 96px);
  padding-bottom: clamp(60px, 8vw, 96px);
  border-bottom: 1px solid var(--paper-line);
}
.lawyer-page__head-left .kicker-en {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}
.lawyer-page__name {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 16px 0 12px;
}
.lawyer-page__role {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--on-paper-mute);
  margin: 0 0 28px;
}
.lawyer-page__spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.lawyer-page__spec {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border: 1px solid var(--paper-line-strong);
  color: var(--on-paper-mute);
  background: #FFFFFF;
}
.lawyer-page__summary {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--on-paper);
  margin: 0 0 24px;
}
.lawyer-page__bar {
  font-family: var(--sans-jp);
  font-size: 13px;
  color: var(--on-paper-mute);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lawyer-page__bar .label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.lawyer-page__portrait {
  margin: 0;
  position: relative;
}
.lawyer-page__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--paper-line);
  background: var(--paper-2);
}

/* ===== Career timeline ===== */
.lawyer-page__career {
  margin-bottom: clamp(60px, 8vw, 96px);
}
.lawyer-page__section-h {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.4;
  margin: 0 0 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--accent);
  display: inline-block;
  padding-right: 24px;
}
.lawyer-page__career-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--paper-line);
}
.lawyer-page__career-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--paper-line);
  align-items: baseline;
}
.lawyer-page__career-year {
  font-family: var(--serif-en-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.lawyer-page__career-text {
  font-family: var(--sans-jp);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--on-paper);
}

/* ===== Sections ===== */
.lawyer-page__section {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}
.lawyer-page__section-body {
  font-family: var(--sans-jp);
  font-size: 15px;
  line-height: 2.1;
  color: var(--on-paper);
  margin: 0;
  font-feature-settings: "palt";
}

/* ===== CTA ===== */
.lawyer-page__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 36px 0;
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  margin-bottom: clamp(60px, 8vw, 96px);
}

/* ===== Other lawyers (related) ===== */
.lawyer-page__others-h {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 32px;
}
.lawyer-page__others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lawyer-page__other-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid var(--paper-line);
  text-decoration: none;
  color: var(--on-paper);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.lawyer-page__other-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px -22px rgba(20, 18, 14, 0.22);
  transform: translateY(-2px);
}
.lawyer-page__other-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--paper-2);
}
.lawyer-page__other-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lawyer-page__other-meta .kicker-en {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--on-paper-faint);
  text-transform: uppercase;
}
.lawyer-page__other-name {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  letter-spacing: 0.04em;
}
.lawyer-page__other-role {
  font-family: var(--sans-jp);
  font-size: 13px;
  color: var(--on-paper-mute);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .lawyer-page__head { grid-template-columns: 1fr; }
  .lawyer-page__portrait { max-width: 360px; }
  .lawyer-page__others-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lawyer-page { padding: 40px var(--gutter); }
  .lawyer-page__back { margin: 24px 0 32px; }
  .lawyer-page__name { font-size: 36px; }
  .lawyer-page__career-item { grid-template-columns: 90px 1fr; gap: 16px; }
  .lawyer-page__career-year { font-size: 13px; }
  .lawyer-page__career-text { font-size: 13.5px; }
  .lawyer-page__section-h { font-size: 22px; }
  .lawyer-page__section-body { font-size: 14px; }
  .lawyer-page__cta { flex-direction: column; }
  .lawyer-page__cta .btn { width: 100%; justify-content: center; }
}

/* ===== Bottom footer (used inline by lawyer pages) ===== */
.article-bottom-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--paper-line);
  padding: 40px var(--gutter);
}
.article-bottom-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--on-paper-mute);
  text-transform: uppercase;
}
.article-bottom-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--on-paper);
}
.article-bottom-footer__brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.article-bottom-footer__brand span {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: none;
}
