:root {
  --ink: #15233f;
  --text: #2f3440;
  --muted: #6e7480;
  --line: #dfe3e9;
  --soft: #f7f8fa;
  --white: #fff;
  --max-width: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}
.brand-main { font-size: 27px; letter-spacing: .12em; }
.brand-sub { margin-top: 8px; font: 10px/1.2 Georgia, serif; letter-spacing: .23em; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  position: relative;
  padding: 31px 0 27px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .06em;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 21px;
  width: 0; height: 1px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: width .2s ease;
}
.site-nav a:hover::after,
.site-nav a.is-current::after { width: 100%; }
.menu-button { display: none; }

.page-hero {
  background: linear-gradient(120deg, #f6f8fb 0%, #fff 62%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 88px 0 82px;
}
.eyebrow,
.section-heading p,
.favorite-label {
  margin: 0;
  color: var(--muted);
  font: 11px/1.5 Georgia, serif;
  letter-spacing: .22em;
}
.page-hero h1 {
  margin: 13px 0 17px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: .12em;
}
.page-lead { margin: 0; font-size: 17px; letter-spacing: .05em; }

.profile-section,
.belief-section,
.favorites-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding: 92px 0;
}
.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(56px, 8vw, 108px);
  align-items: center;
}
.profile-visual { margin: 0; }
.profile-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(.98);
}
.profile-visual figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .12em;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading span { width: 54px; height: 1px; background: #bfc5ce; }
.profile-copy h2,
.belief-section h2,
.favorites-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: .08em;
}
.profile-copy h2 { font-size: clamp(34px, 4vw, 48px); }
.profile-copy p { margin: 18px 0 0; }
.profile-intro { font-size: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .06em;
  transition: background .2s ease, color .2s ease;
}
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #2a3b5e; }
.button-outline { background: #fff; color: var(--ink); }
.button-outline:hover { background: var(--soft); }

.belief-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.belief-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(55px, 8vw, 105px);
}
.belief-section h2,
.favorites-section h2 { font-size: clamp(28px, 3.6vw, 42px); }
.large-copy { margin: 20px 0 0; color: var(--ink); font-size: clamp(20px, 2.4vw, 28px); line-height: 1.8; }
.belief-text p { margin: 0 0 20px; }

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.favorite-block { padding: 33px 30px 35px; border-right: 1px solid var(--line); }
.favorite-block:first-child { padding-left: 0; }
.favorite-block:last-child { padding-right: 0; border-right: 0; }
.favorite-block h3 { margin: 12px 0 9px; color: var(--ink); font-size: 22px; font-weight: 400; }
.favorite-block p { margin: 0; }
.favorite-block a { color: var(--ink); text-underline-offset: 4px; }
.writers ul { margin: 13px 0 0; padding: 0; list-style: none; }
.writers li + li { margin-top: 5px; }

.contact-section {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto 92px;
  padding: 50px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.contact-section h2 { margin-top: 8px; font-size: clamp(24px, 3vw, 34px); }
.contact-section p:not(.eyebrow) { margin: 10px 0 0; }
.contact-section .button { flex: 0 0 auto; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.85); }
.footer-inner {
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
  letter-spacing: .04em;
}
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .brand-main { font-size: 23px; }
  .menu-button {
    width: 42px; height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { width: 23px; height: 1px; background: var(--ink); }
  .site-nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 9px 24px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 3px; border-bottom: 1px solid #edf0f3; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }

  .page-hero-inner { padding: 61px 0 58px; }
  .profile-section,
  .belief-section,
  .favorites-section { padding: 67px 0; }
  .profile-grid,
  .belief-grid { grid-template-columns: 1fr; gap: 43px; }
  .profile-visual { width: min(100%, 500px); }
  .favorites-grid { grid-template-columns: 1fr; }
  .favorite-block,
  .favorite-block:first-child,
  .favorite-block:last-child {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .favorite-block:last-child { border-bottom: 0; }
  .contact-section { align-items: flex-start; flex-direction: column; padding: 38px; }
  .footer-inner { min-height: 112px; flex-direction: column; justify-content: center; gap: 8px; text-align: center; }
}

@media (max-width: 520px) {
  .header-inner,
  .page-hero-inner,
  .profile-section,
  .belief-section,
  .favorites-section,
  .contact-section,
  .footer-inner { width: min(calc(100% - 32px), var(--max-width)); }
  .page-hero h1 { font-size: 38px; }
  .page-lead { font-size: 15px; }
  .profile-copy h2 { font-size: 35px; }
  .button-row { flex-direction: column; }
  .button { width: 100%; }
  .contact-section { padding: 30px 23px; margin-bottom: 68px; }
  .contact-section .button { width: 100%; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
