:root {
  --bg: #fff;
  --ink: #333;
  --muted: #777;
  --line: rgba(51, 51, 51, 0.12);
  --line-strong: rgba(51, 51, 51, 0.28);
  --gold: #8d6b2f;
  --focus: #0a72ef;
  --content: min(100% - 40px, 940px);
  --ambient-glow: rgba(141, 107, 47, 0.06);
  --bear-opacity: 0.14;
  --bear-filter: none;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  color-scheme: light;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  background:
    radial-gradient(circle at 68% 26%, var(--ambient-glow), transparent 28%),
    var(--bg);
}

body::after {
  z-index: 1;
  background-image: url("../img/bear-silhouette-bg.svg"), url("../img/bear-silhouette-bg.svg");
  background-position: left -220px top 170px, right -250px top 210px;
  background-repeat: no-repeat;
  background-size: 540px auto, 610px auto;
  filter: var(--bear-filter);
  opacity: var(--bear-opacity);
}

body > * {
  position: relative;
  z-index: 2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: #050505;
  color: #fff;
  padding: 8px 12px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  width: var(--content);
  margin: 0 auto;
  padding-top: 30px;
  background: transparent;
  text-align: center;
}

.header-inner {
  display: contents;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: Nunito, Assistant, Arial, sans-serif;
  text-transform: lowercase;
}

.brand-name {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 300;
  letter-spacing: 0.28em;
  line-height: 0.85;
}

.brand-sub {
  color: rgba(51, 51, 51, 0.56);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(34px, 6vw, 66px);
  margin-top: 16px;
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.26em;
  line-height: 1;
  text-transform: lowercase;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  color: rgba(51, 51, 51, 0.76);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
}

.home-visual {
  position: relative;
  min-height: auto;
  padding: 16px 0 42px;
}

.main-image {
  width: min(100% - 40px, 600px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: #f4f4f2;
  box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.12);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.94) contrast(1.02) brightness(0.96);
}

.main-image picture,
.profile-photo-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.access-counter {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  width: min(100% - 40px, 720px);
  margin: 14px auto 28px;
  opacity: 0.86;
}

.access-counter__grid {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(51, 51, 51, 0.62);
  font-family: Nunito, Assistant, Arial, sans-serif;
}

.access-counter__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  padding: 2px 7px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  background: rgba(255, 255, 255, 0.36);
}

.access-counter__item dt,
.access-counter__item dd {
  margin: 0;
}

.access-counter__item dt {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(51, 51, 51, 0.56);
  box-shadow: none;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: lowercase;
}

.access-counter__item dd {
  display: inline-flex;
  gap: 0;
  min-width: auto;
  color: var(--ink);
  font-family: Nunito, "Courier New", Courier, monospace;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
}

.access-counter__digit {
  display: inline-grid;
  place-items: center;
  width: 0.68em;
  height: auto;
  border: 0;
  background: transparent;
  color: inherit;
  box-sizing: border-box;
  font-family: inherit;
  line-height: 1;
  text-shadow: none;
}

.artist-link {
  position: absolute;
  top: 118px;
  left: calc(50% + 455px);
  width: 210px;
  font-family: Nunito, Assistant, Arial, sans-serif;
  text-align: left;
  transform: translateX(-50%);
}

@media (max-width: 1080px) {
  .artist-link {
    position: static;
    width: min(100% - 40px, 600px);
    margin: 28px auto 0;
    text-align: left;
    transform: none;
  }

  .artist-link-all a {
    justify-content: flex-start;
  }
}

.artist-link-all {
  margin-bottom: 4px;
}

.artist-link-all a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  border: 0;
  background: transparent;
  color: rgba(51, 51, 51, 0.78);
  font-size: 12.5px;
  font-weight: 200;
  letter-spacing: 0.12em;
}

.artist-link-all a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.link-arrow {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin-left: 5px;
  overflow: hidden;
}

.link-arrow::before {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 6px;
  height: 6px;
  border: 1px solid var(--ink);
  border-left-width: 0;
  border-top-width: 0;
  transform: rotate(-45deg);
}

.section {
  position: relative;
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.section::before {
  content: none;
}

section[id] {
  scroll-margin-top: 96px;
}

.intro {
  padding-top: clamp(40px, 5vw, 54px);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(46px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.14;
}

h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.22;
}

.intro-grid,
.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 82px);
}

.intro .intro-grid {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.intro-title-block,
.intro-body,
.simple-panel,
.answer-card {
  min-width: 0;
}

.intro h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  white-space: nowrap;
}

.intro-role {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.intro-area {
  margin: 8px 0 0;
  color: rgba(51, 51, 51, 0.74);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.name-variants {
  margin-top: 10px;
  color: rgba(51, 51, 51, 0.62);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.intro-body,
.simple-panel,
.contact-section > p {
  color: rgba(51, 51, 51, 0.82);
  font-size: 14px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.intro-body {
  max-width: 40em;
}

.contact-section > p {
  max-width: 44em;
  margin-right: auto;
  margin-left: auto;
}

.intro-body p + .text-link {
  margin-top: 24px;
}

.intro-body .bonus-link {
  display: table;
  margin-top: 14px;
  color: rgba(51, 51, 51, 0.62);
  font-size: 11.5px;
  letter-spacing: 0.16em;
}

.answer-section {
  padding-top: clamp(62px, 8vw, 90px);
}

.answer-section__header {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 82px);
  margin-bottom: clamp(28px, 5vw, 44px);
}

.answer-section__header p {
  align-self: end;
  color: rgba(51, 51, 51, 0.7);
  font-size: 14px;
  line-height: 2;
}

.answer-grid {
  display: grid;
  gap: 18px;
}

.answer-card {
  border-left: 1px solid var(--line-strong);
  padding: 4px 0 4px clamp(24px, 5vw, 52px);
}

.answer-card h3 {
  margin: 0 0 8px;
  color: rgba(51, 51, 51, 0.92);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.answer-card p {
  color: rgba(51, 51, 51, 0.82);
  font-size: 14px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: rgba(51, 51, 51, 0.9);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: lowercase;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--muted);
}

.simple-panel {
  border-left: 1px solid var(--line-strong);
  padding: 3px 0 3px clamp(24px, 5vw, 52px);
}

.contact-section {
  width: min(100% - 40px, 600px);
  margin: 70px auto 96px;
  padding: 0;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.social-icons--inline {
  justify-content: flex-start;
  margin-top: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  text-transform: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-icons a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  line-height: 1;
}

.social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-icon--instagram {
  width: 20px;
  height: 20px;
}

.social-icon--note {
  width: 21px;
  height: 21px;
}

.social-icon--mail {
  width: 20px;
  height: 20px;
}

.social-icon--mail svg {
  fill: none;
}

.site-footer {
  position: static;
  z-index: 9;
  padding: 46px 0 28px;
  pointer-events: auto;
  color: var(--ink);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.footer-store {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  text-align: center;
  writing-mode: horizontal-tb;
  pointer-events: auto;
}

.profile-page {
  --bear-opacity: 0.16;
  background: var(--bg);
}

body.profile-page::after {
  background-image: url("../img/bear-silhouette-bg.svg"), url("../img/bear-silhouette-bg.svg");
  background-position: left -170px top 68px, right -190px top 92px;
  background-size: 560px auto, 620px auto;
}

.profile-hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(32px, 5vw, 58px);
  border-top: 0;
  padding-top: 52px;
}

.profile-photo-wrap {
  width: min(100%, 720px);
  overflow: hidden;
  background: #e0ded9;
}

.profile-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  object-position: 60% 42%;
}

.profile-page-title {
  width: min(100%, 700px);
  margin: 46px 0 0;
  color: var(--ink);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.12;
}

.profile-page-title span {
  display: block;
  margin-top: 10px;
  color: rgba(51, 51, 51, 0.72);
  font-family: "Yu Gothic Medium", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.8;
}

.profile-introduction {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin-top: 34px;
  color: rgba(51, 51, 51, 0.82);
  font-size: 13px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.profile-introduction p + p {
  margin-top: 24px;
}

.profile-introduction-en {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: rgba(51, 51, 51, 0.74);
  font-family: Nunito, Assistant, Arial, sans-serif;
  letter-spacing: 0.03em;
}

.profile-introduction .text-link {
  margin-top: 34px;
}

.detail-list {
  padding-top: 0;
}

.profile-bottom-cta {
  position: relative;
  z-index: 5;
  width: min(100% - 40px, 700px);
  margin: -42px auto 112px;
  text-align: center;
}

.profile-bottom-cta .text-link {
  margin-top: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-transform: none;
  cursor: pointer;
}

.questions-page main {
  min-height: calc(100vh - 190px);
}

.questions-section {
  display: grid;
  place-items: center;
  padding-top: clamp(80px, 12vw, 150px);
  padding-bottom: clamp(96px, 18vw, 190px);
  text-align: center;
}

.questions-shell {
  width: min(100%, 860px);
}

.questions-kicker {
  margin-bottom: 26px;
  color: rgba(51, 51, 51, 0.56);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 11px;
  font-weight: 200;
  letter-spacing: 0.32em;
  text-transform: lowercase;
}

.questions-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 9vw, 86px);
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.questions-lead {
  max-width: 34em;
  margin: 34px auto 0;
  color: rgba(51, 51, 51, 0.74);
  font-size: 13px;
  line-height: 2;
}

.questions-name-variants {
  margin-top: 18px;
}

.questions-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 30px auto 0;
  font-family: Nunito, Assistant, Arial, sans-serif;
}

.questions-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.18);
  color: rgba(51, 51, 51, 0.72);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1;
}

.questions-jump a:hover {
  border-bottom-color: var(--line-strong);
  color: #111;
}

.questions-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  margin-top: 42px;
}

.questions-links .text-link {
  margin-top: 0;
}

.questions-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  margin: 58px 0 0;
  padding: 0;
  color: rgba(51, 51, 51, 0.82);
  font-size: 13px;
  line-height: 1.85;
  list-style: none;
  text-align: left;
  counter-reset: question;
}

.questions-list li {
  display: grid;
  grid-template-columns: 3.2em 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  counter-increment: question;
}

.questions-list li[id] {
  scroll-margin-top: 92px;
}

.questions-list li::before {
  content: counter(question, decimal-leading-zero);
  color: rgba(51, 51, 51, 0.52);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.questions-list__question,
.questions-list__answer {
  margin: 0;
}

.questions-list__question {
  color: rgba(51, 51, 51, 0.82);
}

.questions-list__answer {
  grid-column: 2;
  margin-top: -5px;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12.5px;
}

.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row dt {
  color: var(--muted);
  font-family: Nunito, Assistant, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.detail-row dd {
  margin: 0;
}

@media (max-width: 768px) {
  :root {
    --content: min(100% - 28px, 940px);
    --bear-opacity: 0.055;
  }

  body.home-page::after,
  body.profile-page::after,
  body.questions-page::after {
    display: block;
    background-image: url("../img/bear-silhouette-bg.svg"), url("../img/bear-silhouette-bg.svg");
    background-position: left -300px top 390px, right -360px top 610px;
    background-size: 430px auto, 470px auto;
  }

  body.profile-page::after {
    background-position: left -320px top 340px, right -380px top 720px;
  }

  body.questions-page::after {
    background-position: left -320px top 500px, right -390px top 900px;
  }

  .questions-section {
    padding-top: 68px;
    padding-bottom: 94px;
  }

  .questions-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .questions-jump {
    gap: 6px 14px;
    max-width: 24em;
    margin-top: 26px;
  }

  .site-header {
    padding-top: 23px;
    text-align: left;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-name {
    font-size: 26px;
    letter-spacing: 0.2em;
  }

  .menu-toggle {
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 20;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(51, 51, 51, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
    cursor: pointer;
    font-family: Nunito, Assistant, Arial, sans-serif;
    font-size: 0;
    backdrop-filter: blur(8px);
  }

  .menu-toggle-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-toggle-lines {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle-lines::before,
  .menu-toggle-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle-lines::before {
    top: -7px;
  }

  .menu-toggle-lines::after {
    top: 7px;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 62px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    transform-origin: top;
    transform: scaleY(0.96);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .home-visual {
    min-height: auto;
    padding: 28px 0 54px;
  }

  .main-image {
    width: min(100% - 28px, 560px);
  }

  .main-image img {
    height: 100%;
  }

  .access-counter {
    width: min(100% - 28px, 600px);
    margin: 14px auto 24px;
  }

  .access-counter__grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
  }

  .access-counter__item {
    justify-content: center;
    padding: 2px 6px;
  }

  .access-counter__item dt {
    min-height: auto;
    padding: 0;
    font-size: 9.5px;
  }

  .access-counter__item dd {
    gap: 0;
    font-size: 11.5px;
  }

  .access-counter__digit {
    width: 0.68em;
    height: auto;
  }

  .artist-link {
    position: static;
    width: min(100% - 28px, 600px);
    margin: 26px auto 0;
    text-align: left;
    transform: none;
  }

  .artist-link-all {
    display: block;
    margin-bottom: -2px;
  }

  .section,
  .contact-section {
    width: min(100% - 28px, 760px);
  }

  .contact-section > p {
    max-width: 24em;
  }

  .contact-section {
    margin-bottom: 88px;
  }

  .section {
    isolation: isolate;
    overflow: visible;
    padding: 68px 0;
  }

  .section::before,
  .profile-hero::before {
    content: none;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    background-image: url("../img/bear-silhouette-bg.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.12;
  }

  .intro::before {
    top: 55%;
    left: 50%;
    width: min(72vw, 320px);
    height: min(72vw, 320px);
    transform: translate(-50%, -50%);
  }

  #lesson::before {
    top: 58%;
    left: 50%;
    width: min(74vw, 330px);
    height: min(74vw, 330px);
    transform: translate(-50%, -50%);
  }

  #live::before {
    top: 56%;
    left: 50%;
    width: min(74vw, 330px);
    height: min(74vw, 330px);
    transform: translate(-50%, -50%);
  }

  .profile-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .profile-page-title {
    margin-top: 32px;
    font-size: 38px;
    letter-spacing: 0.08em;
  }

  .profile-page-title span {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .profile-hero::before {
    top: 58%;
    left: 50%;
    width: min(76vw, 340px);
    height: min(76vw, 340px);
    opacity: 0.1;
    transform: translate(-50%, -50%);
  }

  .intro-grid,
  .split-section,
  .answer-section__header,
  .profile-hero {
    grid-template-columns: 1fr;
  }

  .intro .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro h2 {
    white-space: normal;
  }

  .simple-panel {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding: 22px 0 0;
  }

  .answer-card {
    padding-left: 22px;
  }

  .answer-card h3,
  .answer-card p,
  .simple-panel p,
  .intro-body p {
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    position: static;
    padding: 42px 0 24px;
  }

  .footer-store {
    position: static;
    transform: none;
    writing-mode: horizontal-tb;
  }

  .footer-store {
    display: block;
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
  }

  .social-icons a {
    width: 44px;
    height: 44px;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .profile-bottom-cta {
    width: min(100% - 28px, 700px);
    margin: -28px auto 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Dark mode styles are retained for manual QA; the public site defaults to light mode. */
body.theme-dark {
  --bg: #050505;
  --ink: #f1eee8;
  --muted: rgba(241, 238, 232, 0.58);
  --line: rgba(241, 238, 232, 0.14);
  --line-strong: rgba(241, 238, 232, 0.32);
  --gold: #d2b878;
  --ambient-glow: rgba(210, 184, 120, 0.08);
  --bear-opacity: 0.58;
  --bear-filter: invert(1) brightness(1.25);
}

body.theme-dark .brand-sub,
body.theme-dark .site-nav a,
body.theme-dark .artist-link-all a,
body.theme-dark .intro-body,
body.theme-dark .intro-area,
body.theme-dark .name-variants,
body.theme-dark .profile-introduction,
body.theme-dark .simple-panel,
body.theme-dark .contact-section > p,
body.theme-dark .questions-lead,
body.theme-dark .questions-list,
body.theme-dark .questions-jump a {
  color: rgba(241, 238, 232, 0.7);
}

body.theme-dark .profile-page-title span,
body.theme-dark .questions-list__answer {
  color: rgba(241, 238, 232, 0.64);
}

body.theme-dark .profile-introduction-en {
  color: rgba(241, 238, 232, 0.62);
}

body.theme-dark .detail-row dt {
  color: rgba(241, 238, 232, 0.5);
}

body.theme-dark .site-nav a:hover,
body.theme-dark .site-nav a[aria-current="page"],
body.theme-dark .artist-link-all a:hover,
body.theme-dark .questions-jump a:hover {
  color: #fff;
}

body.theme-dark .questions-jump a {
  border-bottom-color: rgba(241, 238, 232, 0.22);
}

body.theme-dark .questions-list li::before,
body.theme-dark .questions-kicker {
  color: rgba(241, 238, 232, 0.52);
}

body.theme-dark .main-image {
  background: #181715;
  box-shadow: 0 0 0 1px rgba(241, 238, 232, 0.14);
}

body.theme-dark .access-counter__grid {
  color: rgba(241, 238, 232, 0.62);
}

body.theme-dark .access-counter__item {
  border-color: rgba(241, 238, 232, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

body.theme-dark .access-counter__item dt {
  color: rgba(241, 238, 232, 0.48);
}

body.theme-dark .access-counter__digit {
  color: #f1eee8;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

body.theme-dark .profile-photo-wrap {
  background: #181715;
}

@media (max-width: 768px) {
  body.theme-dark .site-nav {
    background: rgba(5, 5, 5, 0.98);
  }
}
