/* ============================================================
   05 · Section scaffolding + Story section
   ============================================================ */

.section { position: relative; padding: clamp(90px, 12vw, 150px) 0; z-index: 2; }
.section-head { max-width: 720px; margin-bottom: clamp(48px, 7vw, 80px); }
.kicker {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--violet-400); margin-bottom: 16px;
}
.section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; letter-spacing: -.02em; }
.section-sub { margin-top: 18px; color: var(--slate-400); max-width: 560px; font-size: 1rem; }

/* Story */
.story { background: linear-gradient(180deg, var(--ink-950), var(--ink-900) 40%, var(--ink-950)); }
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.story-copy { display: flex; flex-direction: column; gap: 20px; }
.story-copy p { color: var(--slate-400); font-size: 1.02rem; }
.story-copy p strong { color: var(--slate-100); font-weight: 600; }
.story-copy p em { color: var(--blue-300); font-style: italic; }

.pull-quote {
  margin: 10px 0; padding: 22px 26px; border-radius: var(--radius-md);
  border-left: 3px solid var(--violet-500);
  background: linear-gradient(135deg, rgba(59, 130, 246, .08), rgba(139, 92, 246, .1));
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white);
  line-height: 1.5;
}
.pull-quote footer { font-family: var(--font-mono); font-size: .68rem; color: var(--slate-500); font-weight: 400; margin-top: 12px; letter-spacing: .04em; }

.story-card-wrap { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }

/* framed photo (royalty-free, from Pexels) */
.story-photo {
  margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(96, 165, 250, .3); box-shadow: var(--shadow-1); aspect-ratio: 4/3;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.story-photo:hover img { transform: scale(1.05); }
.story-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, .75));
}
.story-photo figcaption {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: rgba(13, 21, 38, .7); padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

.id-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, .92), rgba(243, 246, 252, .98));
  border: 1px solid rgba(96, 165, 250, .3); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-1);
}
.id-card-top { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(148, 163, 184, .1); }
.id-monogram {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff;
  background: var(--grad); box-shadow: 0 8px 22px -8px rgba(124, 58, 237, .7);
}
.id-badge { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; color: #059669; background: rgba(16, 185, 129, .12); padding: 6px 12px; border-radius: 999px; }
.id-card-body { padding: 22px; }
.id-card-body h3 { font-size: 1.45rem; margin-bottom: 4px; }
.id-role { font-size: .9rem; color: var(--slate-400); margin-bottom: 22px; }
.id-role span { color: var(--violet-400); font-family: var(--font-mono); font-size: .75rem; }
.id-meta { display: flex; flex-direction: column; gap: 14px; }
.id-meta > div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px dashed rgba(148, 163, 184, .12); }
.id-meta dt { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-500); padding-top: 4px; }
.id-meta dd { margin: 0; font-size: .84rem; color: var(--slate-100); text-align: right; }
.id-meta dd a { color: var(--blue-300); transition: color .2s; }
.id-meta dd a:hover { color: var(--violet-400); }
.id-card-foot { padding: 14px 22px; border-top: 1px solid rgba(148, 163, 184, .1); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; color: var(--slate-500); text-transform: uppercase; }

.id-note {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: var(--radius-md);
  border: 1px solid rgba(139, 92, 246, .3); background: rgba(139, 92, 246, .08);
  font-size: .86rem; color: var(--slate-300);
}
.id-note strong { color: var(--white); }
.id-note-ico { color: var(--violet-400); font-size: 1.05rem; }
