:root {
  --paper: #f5f1e8;
  --paper-deep: #ebe4d7;
  --ink: #171513;
  --muted: #6e665d;
  --vermilion: #8e1c1f;
  --line: rgba(23, 21, 19, 0.18);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 15%, rgba(255,255,255,.82), transparent 35%),
    radial-gradient(circle at 82% 88%, rgba(142,28,31,.055), transparent 32%),
    linear-gradient(135deg, var(--paper), var(--paper-deep));
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    repeating-linear-gradient(0deg, rgba(75,60,45,.04) 0, rgba(75,60,45,.04) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(42px, 7vw, 82px);
  background: rgba(250, 248, 243, .86);
  border: 1px solid rgba(23,21,19,.12);
  box-shadow: 0 26px 80px rgba(35, 28, 20, .13);
  text-align: center;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(142,28,31,.18);
  pointer-events: none;
}

.seal-wrap {
  position: absolute;
  top: clamp(24px, 5vw, 48px);
  right: clamp(24px, 5vw, 48px);
  width: clamp(58px, 9vw, 82px);
  height: clamp(58px, 9vw, 82px);
  display: grid;
  place-items: center;
}

.seal-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.9) contrast(1.06);
}

.eyebrow {
  margin: 0 0 9px;
  font-size: clamp(.76rem, 1.7vw, .92rem);
  letter-spacing: .27em;
  font-weight: 700;
}

.japanese {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(.92rem, 2vw, 1.08rem);
  letter-spacing: .08em;
  color: var(--muted);
}

.rule {
  width: 58px;
  height: 1px;
  margin: 30px auto 27px;
  background: var(--vermilion);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: .98;
  font-weight: 600;
  letter-spacing: .015em;
}

.role {
  margin: 19px 0 32px;
  font-family: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  font-size: clamp(1.14rem, 2.8vw, 1.48rem);
  letter-spacing: .035em;
}

.affiliations {
  display: grid;
  gap: 17px;
  max-width: 470px;
  margin: 0 auto 35px;
}

.affiliations p { margin: 0; }

.affiliations strong,
.affiliations span {
  display: block;
}

.affiliations strong {
  font-size: .97rem;
  letter-spacing: .025em;
}

.affiliations span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
}

.status {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: .88rem;
  letter-spacing: .025em;
}

.contact {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--ink);
  text-decoration-color: rgba(142,28,31,.5);
  text-underline-offset: 5px;
  font-size: clamp(.92rem, 2vw, 1.02rem);
}

.contact:hover,
.contact:focus-visible {
  color: var(--vermilion);
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .06em;
}

@media (max-width: 640px) {
  .card { padding: 105px 28px 42px; }
  .seal-wrap { top: 28px; right: 50%; transform: translateX(50%); }
  footer { flex-direction: column; align-items: center; }
}
