:root {
  --ink: #18324a;
  --ink-2: #27465f;
  --body: #33424e;
  --muted: #69757e;
  --paper: #fffdf9;
  --cream: #faf6ee;
  --sage: #e6efe9;
  --sage-deep: #2f6f68;
  --rose: #c95f76;
  --rose-soft: #f5e6e8;
  --amber: #d59138;
  --line: #ddd5cb;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(24, 50, 74, .08);
  --shadow-lg: 0 24px 70px rgba(24, 50, 74, .14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --wrap: 1180px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--body);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .025em;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { position: fixed; right: 0; left: 0; width: 100%; overflow: hidden; }

img, picture, svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, p, figure, blockquote { margin-top: 0; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .045em;
}

p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 850px);
  margin-inline: auto;
}

.pc-br { display: inline; }
.sp-br { display: none; }
.nowrap { white-space: nowrap; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(221, 213, 203, .82);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .06em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--sage-deep);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.brand-symbol {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(24, 50, 74, .25);
  border-radius: 50% 50% 46% 46%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 14px;
  height: 19px;
  border: 2px solid var(--ink);
  border-top: 0;
  background: var(--cream);
}

.brand-symbol::before {
  left: 7px;
  border-radius: 2px 0 6px 8px;
  transform: skewY(8deg);
}

.brand-symbol::after {
  right: 7px;
  border-radius: 0 2px 8px 6px;
  transform: skewY(-8deg);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 24px);
}

.main-nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

.main-nav .nav-cta {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible { background: var(--sage-deep); border-color: var(--sage-deep); }

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 86px) 0 56px;
  background:
    radial-gradient(circle at 8% 12%, rgba(201, 95, 118, .1), transparent 27%),
    linear-gradient(145deg, var(--paper) 0%, var(--cream) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(47, 111, 104, .2);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 88px);
}

.hero-copy { min-width: 0; }

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.home-hero h1 {
  margin: 22px 0 20px;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.22;
}

.hero-copy .hero-subtitle {
  margin-bottom: 14px;
  color: var(--rose);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
}

.hero-copy .lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.55vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn::after { content: "→"; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--sage-deep); }
.btn-secondary { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover, .btn-light:focus-visible { background: var(--cream); }
.btn-ghost { border-color: var(--line); background: var(--white); color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--ink); background: var(--cream); }

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -14px 18px 18px -14px;
  border: 1px solid rgba(201, 95, 118, .36);
  border-radius: 46% 46% 24px 24px;
}

.hero-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 46% 46% 24px 24px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-photo figcaption {
  position: absolute;
  right: -20px;
  bottom: 22px;
  max-width: 250px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, .95);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-pillars {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pillars span {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.news-ribbon {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.news-ribbon a {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.news-ribbon strong {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #8b3c4d;
  font-size: 11px;
}

.news-ribbon span { color: var(--ink); font-weight: 700; }
.news-ribbon b { color: var(--sage-deep); font-size: 13px; }

.section { padding: clamp(76px, 9vw, 120px) 0; }
.section.compact { padding-block: 64px; }
.section-soft { background: var(--cream); }
.section-sage { background: var(--sage); }
.section-white { background: var(--white); }
.section-ink { background: var(--ink); color: rgba(255,255,255,.86); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink .eyebrow { color: #b8ddd6; }

.showcase-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255,255,255,.84);
}

.showcase-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(201,95,118,.23), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(47,111,104,.32), transparent 34%);
  pointer-events: none;
}

.showcase-section .wrap { position: relative; z-index: 1; }
.showcase-section h2 { color: var(--white); }
.showcase-section .eyebrow { color: #b8ddd6; }
.showcase-section .sample-notice { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }

.bookshelf-visual {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

.bookshelf-visual img { width: 100%; aspect-ratio: 1717 / 916; border-radius: 22px; object-fit: cover; }
.bookshelf-visual figcaption { padding: 14px 8px 2px; color: rgba(255,255,255,.76); text-align: center; font-size: 12px; font-weight: 700; }

.impact-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.impact-stats > div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 18px;
}

.impact-stats strong { color: var(--white); font-family: "Shippori Mincho", serif; font-size: clamp(42px, 6vw, 72px); line-height: 1; }
.impact-stats span { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .08em; line-height: 1.7; }

.empathy-note {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 28px 30px;
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--cream);
}

.empathy-note strong { color: var(--ink); font-family: "Shippori Mincho", serif; font-size: 22px; }
.empathy-note p { margin: 8px 0 0; }

.manga-page { max-width: 520px; margin-inline: auto; }
.manga-page img { max-height: none !important; aspect-ratio: auto !important; }

.vision-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(201,95,118,.12), transparent 26%),
    linear-gradient(145deg, var(--sage), var(--cream));
}

.vision-number {
  margin: 0;
  color: var(--rose);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(76px, 11vw, 150px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.04em;
}

.vision-note { padding: 14px 18px; border-left: 3px solid var(--amber); background: rgba(255,255,255,.62); }

.publishing-wheel {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(47,111,104,.22);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-sm);
}

.publishing-wheel-core {
  min-height: 230px;
  padding: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: rgba(255,255,255,.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 22px 55px rgba(24,50,74,.22);
}

.publishing-wheel-core span { color: #b8ddd6; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.publishing-wheel-core strong { color: var(--white); font-family: "Shippori Mincho", serif; font-size: 48px; line-height: 1.25; }
.publishing-wheel-core small { font-size: 12px; }
.publishing-wheel-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.publishing-wheel-items span { min-height: 76px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); color: var(--ink); display: grid; place-items: center; text-align: center; font-weight: 800; }

.section-heading { max-width: 820px; margin-bottom: 42px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 {
  margin: 14px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
}
.section-heading .lead { font-size: clamp(16px, 1.6vw, 19px); }

.entry-grid,
.month-grid,
.partner-grid,
.voice-grid,
.service-grid,
.article-grid,
.principle-grid,
.works-grid {
  display: grid;
  gap: 22px;
}

.entry-grid { grid-template-columns: repeat(3, 1fr); }
.month-grid { grid-template-columns: repeat(3, 1fr); }
.partner-grid { grid-template-columns: repeat(3, 1fr); }
.voice-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.principle-grid { grid-template-columns: repeat(3, 1fr); }
.works-grid { grid-template-columns: repeat(3, 1fr); }

.entry-card,
.month-card,
.partner-card,
.voice-card,
.service-card,
.principle-card,
.work-card,
.article-card,
.paper-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(24, 50, 74, .05);
}

.entry-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.entry-card::before {
  content: attr(data-index);
  position: absolute;
  right: 18px;
  top: 8px;
  color: rgba(24, 50, 74, .06);
  font-family: "Shippori Mincho", serif;
  font-size: 78px;
  font-weight: 700;
}

.entry-card:hover, .entry-card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.entry-card h3 { position: relative; margin: 12px 0; font-size: 23px; }
.entry-card p { position: relative; }
.entry-card b { margin-top: auto; color: var(--sage-deep); font-size: 13px; }

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.feature-split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.feature-split.reverse > :first-child { order: 2; }

.feature-media {
  position: relative;
  margin: 0;
}

.feature-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.feature-media.square img { aspect-ratio: 1; }
.feature-media.wide img { aspect-ratio: 4 / 3; }
.feature-media.portrait { background: #efe9df; }
.feature-media.portrait img { max-height: 760px; aspect-ratio: 3 / 5; object-fit: contain; }

.feature-copy h2 { margin: 15px 0 20px; font-size: clamp(30px, 3.8vw, 46px); }
.feature-copy .lead { font-size: 18px; }

.method-track {
  position: relative;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.method-track::before {
  content: "";
  position: absolute;
  top: 27px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: var(--line);
}

.method-step { position: relative; text-align: center; }
.method-step b {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--rose);
  display: grid;
  place-items: center;
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
}
.method-step h3 { margin-bottom: 8px; font-size: 20px; }
.method-step p { color: var(--muted); font-size: 14px; line-height: 1.75; }

.month-card { position: relative; padding: 32px; overflow: hidden; }
.month-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(230, 239, 233, .85);
}
.month-card .month { position: relative; z-index: 1; color: var(--rose); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.month-card h3 { position: relative; z-index: 1; margin: 12px 0; font-size: 24px; }
.month-card p, .month-card ul { position: relative; z-index: 1; }

.sample-notice {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid #e0b7c0;
  border-radius: var(--radius-sm);
  background: #fff7f8;
  color: #6f3b47;
  font-size: 14px;
}

.sample-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #813b4a;
  font-size: 11px;
  font-weight: 800;
}

.partner-card { padding: 20px; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
  border: 1px dashed #b7c4bd;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(230,239,233,.8), rgba(250,246,238,.9)),
    var(--cream);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.partner-card h3 { margin: 14px 0 8px; font-size: 21px; }
.partner-meta { margin: 14px 0; display: grid; gap: 7px; }
.partner-meta span { padding-top: 7px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.member-books { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; gap: 8px; }
.member-books b { color: var(--sage-deep); font-size: 11px; letter-spacing: .08em; }
.mini-books { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-book {
  width: 74px;
  min-height: 104px;
  padding: 12px 8px;
  border-radius: 4px 8px 8px 4px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 4px 7px 14px rgba(24,50,74,.16);
}
.mini-book small { font-family: "Zen Kaku Gothic New", sans-serif; font-size: 8px; letter-spacing: .08em; }
.book-sage { background: linear-gradient(145deg, #285f59, #6da39b); }
.book-rose { background: linear-gradient(145deg, #9d4358, #d98899); }
.book-navy { background: linear-gradient(145deg, #142c43, #436782); }
.book-amber { background: linear-gradient(145deg, #a56520, #e0a34b); }
.text-link { color: var(--sage-deep); font-size: 14px; font-weight: 800; }
.text-link::after { content: " →"; }

.voice-card { position: relative; padding: 28px; }
.voice-card blockquote {
  margin: 18px 0;
  color: var(--ink);
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  line-height: 1.75;
}
.voice-card blockquote::before { content: "“"; color: var(--rose); font-size: 42px; line-height: 0; }
.voice-card dl { margin: 0; }
.voice-card dt { color: var(--sage-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.voice-card dd { margin: 0 0 12px; color: var(--muted); font-size: 13px; }

.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-card { overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.article-card:hover, .article-card:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-card-body { padding: 22px; }
.article-meta { margin-bottom: 10px; color: var(--sage-deep); display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 11px; font-weight: 800; }
.article-card h3 { margin-bottom: 10px; font-size: 21px; }
.article-card p { color: var(--muted); font-size: 14px; }

.article-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.article-feature img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.article-feature-content { padding: clamp(28px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.article-feature h2 { margin: 14px 0; font-size: clamp(28px, 3vw, 38px); }

.profile-split {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}
.profile-photo { margin: 0; }
.profile-photo img { width: 100%; aspect-ratio: 3 / 4; border: 10px solid var(--white); border-radius: 160px 160px 22px 22px; object-fit: cover; box-shadow: var(--shadow-lg); }
.profile-copy h2 { margin: 14px 0 8px; font-size: clamp(32px, 4vw, 46px); }
.profile-role { margin-bottom: 22px; color: var(--rose); font-weight: 800; }
.team-mini { margin-top: 28px; padding: 20px; border-left: 3px solid var(--amber); background: rgba(255,255,255,.6); }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: rgba(255,255,255,.84);
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.cta-panel h2 { position: relative; z-index: 1; max-width: 780px; margin-bottom: 18px; color: var(--white); font-size: clamp(30px, 4vw, 46px); }
.cta-panel p, .cta-panel .hero-actions { position: relative; z-index: 1; }
.cta-panel p { max-width: 800px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(230,239,233,.82), transparent 55%),
    var(--cream);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(201,95,118,.25);
  border-radius: 50%;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin: 18px 0; font-size: clamp(38px, 5.3vw, 64px); }
.page-hero .lead { max-width: 780px; font-size: clamp(16px, 1.7vw, 20px); }
.breadcrumbs { margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

.paper-card { padding: clamp(26px, 4vw, 42px); }
.paper-card h2, .paper-card h3 { margin-bottom: 16px; }
.service-card, .principle-card, .work-card { padding: 28px; }
.service-card h3, .principle-card h3, .work-card h3 { margin: 14px 0 10px; font-size: 22px; }
.service-number { color: var(--rose); font-family: "Shippori Mincho", serif; font-size: 34px; font-weight: 700; }

.check-list, .plain-list { margin: 20px 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 10px 0; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-deep); font-weight: 900; }
.plain-list li { padding: 9px 0; border-bottom: 1px solid var(--line); }

.timeline { position: relative; display: grid; gap: 24px; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.timeline-label { color: var(--rose); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.timeline-item h3 { margin-bottom: 10px; font-size: 24px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.faq-list summary { min-height: 58px; padding: 16px 54px 16px 20px; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--rose); font-size: 24px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 20px 20px; color: var(--muted); }

.filter-bar { margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.is-active, .filter-button:hover, .filter-button:focus-visible { border-color: var(--ink); background: var(--ink); color: var(--white); }
.article-card[hidden] { display: none; }

.prose { font-size: 17px; }
.prose > * { max-width: 100%; }
.prose h2 { margin: 64px 0 20px; padding-top: 12px; border-top: 1px solid var(--line); font-size: clamp(27px, 3vw, 36px); }
.prose h3 { margin: 38px 0 14px; font-size: 24px; }
.prose p { margin-bottom: 1.45em; }
.prose ul, .prose ol { margin: 0 0 1.6em; padding-left: 1.5em; }
.prose blockquote { margin: 34px 0; padding: 24px 28px; border-left: 4px solid var(--rose); background: var(--cream); color: var(--ink); font-family: "Shippori Mincho", serif; font-size: 20px; }
.article-header-image { width: 100%; margin: 34px 0 48px; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; }
.article-status { margin: 20px 0; padding: 14px 18px; border: 1px solid #e0b7c0; border-radius: 12px; background: #fff7f8; color: #6f3b47; font-size: 13px; }
.article-author { margin-top: 60px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }

.ecosystem {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}

.ecosystem-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.ecosystem-card.is-front { border-top: 5px solid var(--sage-deep); }
.ecosystem-card.is-grow { border-top: 5px solid var(--amber); }
.ecosystem-card.is-back { border-top: 5px solid var(--rose); }
.ecosystem-card h3 { margin: 12px 0; font-size: 24px; }
.ecosystem-card p { color: var(--muted); }
.ecosystem-label { color: var(--sage-deep); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.ecosystem-arrow { align-self: center; color: var(--rose); font-size: 28px; font-weight: 900; }

.media-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 26px; }
.media-chip { min-height: 82px; padding: 14px 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.72); color: var(--ink); display: grid; place-items: center; text-align: center; font-size: 13px; font-weight: 800; line-height: 1.45; }

.external-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background: #101720;
  color: rgba(255,255,255,.82);
  box-shadow: var(--shadow-lg);
}
.external-card-content { padding: clamp(30px, 5vw, 58px); }
.external-card h2, .external-card h3 { color: var(--white); }
.external-card .eyebrow { color: #f4c95d; }
.external-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; object-position: center top; }
.external-card .btn-secondary { border-color: var(--white); color: var(--white); }
.external-card .btn-secondary:hover, .external-card .btn-secondary:focus-visible { background: var(--white); color: var(--ink); }

.role-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.role-tags span { padding: 7px 12px; border-radius: 999px; background: var(--cream); color: var(--ink-2); font-size: 12px; font-weight: 700; }

.quote-panel { padding: clamp(28px, 5vw, 52px); border-left: 5px solid var(--rose); border-radius: 0 var(--radius) var(--radius) 0; background: var(--white); box-shadow: var(--shadow-sm); }
.quote-panel p { margin: 0; color: var(--ink); font-family: "Shippori Mincho", serif; font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-card { padding: clamp(28px, 5vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.contact-card h2 { font-size: 28px; }
.contact-card .btn { margin-top: 16px; }
.contact-note { margin-top: 30px; padding: 24px; border-radius: var(--radius-sm); background: var(--cream); }

.site-footer { padding: 66px 0 28px; border-top: 1px solid var(--line); background: #f3eee5; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.9fr; gap: 60px; }
.footer-about { max-width: 440px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h3 { margin-bottom: 12px; font-family: "Zen Kaku Gothic New", sans-serif; font-size: 12px; letter-spacing: .08em; }
.footer-nav a { display: block; margin: 8px 0; color: var(--muted); font-size: 13px; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid rgba(213, 145, 56, .65); outline-offset: 3px; }

@media (max-width: 1180px) {
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute;
    z-index: 101;
    top: 100%;
    right: 0;
    bottom: auto;
    width: min(390px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 24px;
    border-left: 1px solid var(--line);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    clip-path: inset(0 0 0 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: clip-path .25s ease, opacity .2s ease, visibility .25s ease;
  }
  .main-nav.is-open { clip-path: inset(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .main-nav a { min-height: 52px; padding: 13px 4px; border-bottom: 1px solid var(--line); display: flex; align-items: center; font-size: 15px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { margin-top: 18px; border-bottom: 0; }
}

@media (max-width: 900px) {
  .hero-grid, .feature-split, .feature-split.reverse, .profile-split, .article-feature, .footer-grid { grid-template-columns: 1fr; }
  .feature-split.reverse > :first-child { order: initial; }
  .hero-photo { max-width: 680px; }
  .hero-photo figcaption { right: 12px; }
  .entry-grid, .month-grid, .partner-grid, .voice-grid, .service-grid, .principle-grid, .works-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .method-track { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; }
  .method-step { scroll-snap-align: start; }
  .article-feature img { min-height: 300px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .ecosystem { grid-template-columns: 1fr; }
  .ecosystem-arrow { justify-self: center; transform: rotate(90deg); }
  .media-list { grid-template-columns: repeat(3, 1fr); }
  .external-card { grid-template-columns: 1fr; }
  .external-card img { min-height: auto; max-height: 620px; }
  .impact-stats { grid-template-columns: 1fr; }
  .publishing-wheel { grid-template-columns: 1fr; }
  .publishing-wheel-core { width: min(280px, 100%); min-height: 280px; margin-inline: auto; }
}

@media (max-width: 680px) {
  :root { --header-height: 70px; }
  body { font-size: 15px; }
  .wrap, .narrow { width: min(calc(100% - 30px), var(--wrap)); }
  .header-inner { width: calc(100% - 26px); min-height: var(--header-height); }
  .brand-symbol { width: 38px; height: 38px; }
  .brand-symbol::before, .brand-symbol::after { top: 9px; width: 12px; height: 17px; }
  .brand-symbol::before { left: 7px; }
  .brand-symbol::after { right: 7px; }
  .brand { gap: 9px; font-size: 13px; }
  .brand small { font-size: 8px; }
  .home-hero { padding: 52px 0 48px; }
  .home-hero h1 { font-size: clamp(36px, 10.5vw, 48px); }
  .home-hero h1 .nowrap { white-space: normal; }
  .hero-grid { gap: 42px; }
  .hero-photo::before { inset: -8px 10px 10px -8px; }
  .hero-photo figcaption { position: static; max-width: none; margin-top: 12px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .news-ribbon a { padding-block: 14px; grid-template-columns: auto 1fr; gap: 8px 12px; }
  .news-ribbon b { grid-column: 2; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 30px; }
  .entry-grid, .month-grid, .partner-grid, .voice-grid, .service-grid, .principle-grid, .works-grid, .article-grid, .contact-grid { grid-template-columns: 1fr; }
  .entry-card { min-height: 220px; }
  .method-track { grid-template-columns: 1fr; overflow: visible; }
  .method-track::before { top: 0; right: auto; bottom: 0; left: 27px; width: 1px; height: auto; }
  .method-step { padding-left: 76px; text-align: left; }
  .method-step b { position: absolute; left: 0; margin: 0; }
  .method-step h3 { min-height: 56px; display: flex; align-items: center; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .article-feature img { min-height: auto; aspect-ratio: 16 / 9; }
  .profile-split { gap: 34px; }
  .profile-photo { max-width: 330px; margin-inline: auto; }
  .cta-panel { border-radius: var(--radius); }
  .page-hero { padding: 60px 0 66px; }
  .prose { font-size: 16px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .media-list { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .bookshelf-visual { padding: 7px; border-radius: var(--radius); }
  .bookshelf-visual img { border-radius: 14px; }
  .impact-stats > div { padding: 18px; }
  .impact-stats strong { min-width: 70px; }
  .empathy-note { padding: 22px 20px; }
  .empathy-note strong { font-size: 19px; }
  .publishing-wheel { padding: 22px; }
  .publishing-wheel-core { width: 220px; min-height: 220px; padding: 24px; }
  .publishing-wheel-core strong { font-size: 40px; }
  .publishing-wheel-items { grid-template-columns: 1fr; }
  .publishing-wheel-items span { min-height: 62px; }
  .pc-br { display: none; }
  .sp-br { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* WordPress production integration */
:root { --rose: #a9475c; --muted: #56616b; }
.site-header { background: #fffdf9; backdrop-filter: none; }
.home-hero,
.page-hero,
.vision-section { background: #faf6ee; }
.home-hero::before,
.page-hero::before,
.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 9% 14%, rgba(201, 95, 118, .1), transparent 29%), radial-gradient(circle at 88% 74%, rgba(47, 111, 104, .09), transparent 32%);
}
.vision-section { position: relative; overflow: hidden; }
.vision-section > .wrap { position: relative; z-index: 1; }
.showcase-section .btn-secondary,
.showcase-section .btn-secondary:visited { border-color: #fff; color: #fff; }
.showcase-section .btn-secondary:hover,
.showcase-section .btn-secondary:focus,
.showcase-section .btn-secondary:focus-visible,
.showcase-section .btn-secondary:active { border-color: #fff; background: #fff; color: #18324a; }
.photo-placeholder { background: #eef3ed; }
.mini-book.book-sage { background: #285f59; }
.mini-book.book-rose { background: #8a354a; }
.mini-book.book-navy { background: #142c43; }
.mini-book.book-amber { background: #7d4d16; }
.entry-card::before { content: ""; width: 92px; height: 92px; top: 2px; right: 6px; background-position: center; background-repeat: no-repeat; background-size: contain; }
.entry-card[data-index="01"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='76' text-anchor='middle' font-family='serif' font-size='76' font-weight='700' fill='%2318324a' fill-opacity='.07'%3E01%3C/text%3E%3C/svg%3E"); }
.entry-card[data-index="02"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='76' text-anchor='middle' font-family='serif' font-size='76' font-weight='700' fill='%2318324a' fill-opacity='.07'%3E02%3C/text%3E%3C/svg%3E"); }
.entry-card[data-index="03"]::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='76' text-anchor='middle' font-family='serif' font-size='76' font-weight='700' fill='%2318324a' fill-opacity='.07'%3E03%3C/text%3E%3C/svg%3E"); }
.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
.site-footer,
.site-footer .footer-about,
.site-footer .footer-bottom,
.site-footer .footer-nav a,
.site-footer .footer-nav a:visited { color: #56616b; }
.admin-bar .site-header { top: 32px; }
.footer-legal { display: flex; justify-content: flex-end; gap: 18px; padding-top: 0; padding-bottom: 28px; font-size: 12px; }
.footer-legal a, .footer-legal a:visited { color: #56616b; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: #18324a; }
.prose .alignwide { width: min(1100px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.prose .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.nav-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.article-grid > .nav-links { grid-column: 1 / -1; }
.nav-links a, .nav-links span { min-width: 44px; min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
@media (max-width: 640px) { .footer-legal { justify-content: flex-start; flex-direction: column; gap: 8px; } }
@media (max-width: 1180px) {
  html:not(.js-enabled) .header-inner { flex-wrap: wrap; padding-block: 10px; }
  html:not(.js-enabled) .menu-toggle { display: none; }
  html:not(.js-enabled) .main-nav { position: static; width: 100%; min-width: 0; max-width: 100%; height: auto; padding: 0; border: 0; display: flex; flex-direction: row; overflow-x: auto; clip-path: none; opacity: 1; visibility: visible; pointer-events: auto; }
  html:not(.js-enabled) .main-nav a { flex: 0 0 auto; min-height: 44px; padding-inline: 12px; }
  html:not(.js-enabled) .main-nav .nav-cta { margin-top: 0; }
}
