/* profile.css — プロフィール */

/* ═══════════════════════════════
   思想パート（上部）
═══════════════════════════════ */
.profile-thought {
  padding: clamp(90px, 15vh, 160px) clamp(24px, 8vw, 140px);
  background: var(--washi);
}

.profile-thought__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 80px);
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 820px) {
  .profile-thought__grid { grid-template-columns: 1fr 1.5fr; }
}

/* ─── ポートレート ─── */
.profile-portrait {
  position: sticky;
  top: 120px;
}

.profile-portrait__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(155deg, var(--kinari-deep) 0%, var(--sumi-soft) 55%, var(--sumi) 100%);
  position: relative;
  overflow: hidden;
  display: block;
}

.profile-portrait__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.profile-portrait__deco {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(4.5rem, 9vw, 8rem);
  font-weight: 700;
  color: rgba(244,238,225,.09);
  line-height: 1;
  padding: 0 6px 0 0;
  user-select: none;
  pointer-events: none;
}

.profile-portrait__name {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(.78rem, 1.2vw, .88rem);
  letter-spacing: .5em;
  color: var(--sumi-soft);
  margin-top: 18px;
  text-indent: .5em;
}

.profile-portrait__role {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: .74rem;
  letter-spacing: .22em;
  color: var(--kin);
  margin-top: 8px;
}

/* ─── テキスト本文 ─── */
.profile-thought__body p {
  font-size: clamp(.9rem, 1.5vw, 1.04rem);
  letter-spacing: .06em;
  line-height: 2.35;
  color: var(--sumi-soft);
  margin-bottom: 1.8em;
}

.profile-thought__body p:last-child { margin-bottom: 0; }

.profile-thought__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--sumi);
  letter-spacing: .1em;
  line-height: 1.92;
  margin-bottom: 1.6em;
}

/* ─── 朱下線引用 ─── */
.profile-thought__pull {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.9;
  color: var(--sumi);
  border-left: 3px solid var(--shu);
  padding-left: clamp(18px, 3vw, 28px);
  margin: clamp(28px, 4vw, 40px) 0;
}

/* ═══════════════════════════════
   経歴パート（下部）
═══════════════════════════════ */
.profile-career {
  padding: clamp(90px, 15vh, 160px) clamp(24px, 8vw, 140px);
  background: var(--kinari);
  position: relative;
  overflow: hidden;
}

.profile-career__inner {
  max-width: 880px;
  margin: 0 auto;
}

.profile-career__head {
  margin-bottom: clamp(56px, 8vw, 80px);
}

/* ─── タイムライン ─── */
.profile-timeline {
  position: relative;
  padding-left: clamp(28px, 5vw, 52px);
}

.profile-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  margin-bottom: clamp(36px, 5vw, 52px);
  padding-bottom: clamp(36px, 5vw, 52px);
  border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(0px - clamp(28px, 5vw, 52px) - 3px);
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shu);
  box-shadow: 0 0 0 3px var(--kinari);
}

.timeline-item__year {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(.82rem, 1.3vw, .96rem);
  letter-spacing: .22em;
  color: var(--shu);
  display: block;
  margin-bottom: 10px;
}

.timeline-item__title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--sumi);
  margin-bottom: 10px;
  line-height: 1.65;
}

.timeline-item__desc {
  font-size: clamp(.82rem, 1.3vw, .92rem);
  letter-spacing: .05em;
  line-height: 2.1;
  color: var(--sumi-soft);
}

/* ─── 資格・実績グリッド ─── */
.profile-creds {
  margin-top: clamp(56px, 8vw, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-cred {
  background: var(--kinari);
  padding: clamp(24px, 4vw, 36px) clamp(20px, 3.5vw, 36px);
  transition: background .4s var(--ease);
}

.profile-cred:hover { background: var(--washi); }

.profile-cred__label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--shu);
  margin-bottom: 10px;
}

.profile-cred__text {
  font-size: clamp(.82rem, 1.3vw, .92rem);
  letter-spacing: .04em;
  line-height: 1.9;
  color: var(--sumi-soft);
}

@media (max-width: 640px) {
  .profile-creds { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   CTA（dark）
═══════════════════════════════ */
.profile-actions {
  padding: clamp(90px, 14vh, 150px) clamp(24px, 8vw, 140px);
  background: var(--sumi);
  text-align: center;
}

.profile-actions .eyebrow       { color: var(--kin-soft); }
.profile-actions .eyebrow::before { background: var(--kin-soft); }
.profile-actions .eyebrow b     { color: rgba(244,238,225,.45); }

.profile-actions .h2 { color: var(--kinari); }

.profile-actions__text {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(.95rem, 1.7vw, 1.18rem);
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 2.1;
  color: rgba(244,238,225,.68);
  max-width: 460px;
  margin: clamp(20px, 3vw, 32px) auto clamp(44px, 7vw, 64px);
}

.profile-actions__links {
  display: flex;
  gap: clamp(14px, 2.5vw, 24px);
  justify-content: center;
  flex-wrap: wrap;
}

.profile-actions .cta { margin-top: 0; }
