:root {
  --paper: #fbf8f1;
  --paper-deep: #f3ecdf;
  --white: #fffefa;
  --ink: #25231f;
  --muted: #6e685f;
  --gold: #bd8c2d;
  --gold-deep: #9a6b14;
  --gold-pale: #e7d2a5;
  --rose: #e9c7c2;
  --rose-deep: #b66d64;
  --sage: #bec7ad;
  --line: rgba(74, 60, 37, 0.16);
  --shadow: 0 24px 70px rgba(95, 73, 35, 0.12);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --script: "Petit Formal Script", cursive;
  --hand: "Klee One", "Yu Kyokasho", "Hiragino Maru Gothic ProN", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-break: strict;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.hero-course,
.concerns-answer {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

.nowrap {
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding: 14px clamp(22px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 248, 241, 0.86);
  backdrop-filter: blur(18px);
  transition:
    min-height 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(54, 43, 23, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 25px;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 400;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 46px);
  margin: 0 clamp(28px, 4vw, 66px);
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: #fff;
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(189, 140, 45, 0.22);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.header-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.line-dot {
  display: inline-grid;
  min-width: 34px;
  height: 22px;
  place-items: center;
  border-radius: 100px;
  color: #fff;
  background: #06c755;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.line-dot--light {
  color: #06a849;
  background: #fff;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 150px) 24px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(930px, 100svh);
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(24px, 4vw, 80px);
  padding: 138px clamp(26px, 7vw, 118px) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.92), transparent 38%),
    linear-gradient(120deg, #faf7f0 0%, #f9f4e9 46%, #f2e8d7 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.1'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  border: 1px solid rgba(189, 140, 45, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration--one {
  top: 6%;
  right: 28%;
  width: 320px;
  height: 320px;
}

.hero-decoration--two {
  right: -130px;
  bottom: -180px;
  width: 520px;
  height: 520px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(15px, 1.3vw, 20px);
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: 0.025em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 em,
.center-heading h2 em,
.reasons h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-course {
  margin: 24px 0 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-lead {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button--gold {
  color: #fff;
  background: linear-gradient(135deg, #c99b42, #aa7618);
  box-shadow: 0 14px 34px rgba(157, 108, 20, 0.24);
}

.button--gold:hover,
.button--gold:focus-visible {
  box-shadow: 0 18px 42px rgba(157, 108, 20, 0.32);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  text-underline-offset: 5px;
}

.hero-points {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  display: grid;
  min-height: 126px;
  place-content: center;
  padding: 16px 12px 14px;
  border: 1px solid rgba(166, 125, 47, 0.19);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.7);
  text-align: center;
  box-shadow: 0 14px 30px rgba(86, 65, 25, 0.06);
}

.point-icon {
  position: absolute;
  top: 10px;
  left: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}

.hero-points strong {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.hero-points small {
  color: var(--muted);
  font-size: 10px;
}

.hero-visual {
  align-self: stretch;
  min-height: 680px;
}

.hero-photo-frame {
  position: absolute;
  inset: 2% 3% 0 5%;
  overflow: hidden;
  border-radius: 52% 48% 7% 7% / 33% 33% 5% 5%;
  box-shadow: var(--shadow);
}

.hero-photo-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(91, 65, 22, 0.12));
  content: "";
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.script-note {
  position: absolute;
  right: -2%;
  bottom: 16%;
  z-index: 2;
  margin: 0;
  color: var(--gold);
  font-family: var(--script);
  font-size: clamp(34px, 3.7vw, 60px);
  line-height: 1.35;
  text-align: center;
  transform: rotate(-6deg);
}

.script-note--jp {
  max-width: 460px;
  font-family: var(--hand);
  font-size: clamp(24px, 2.3vw, 33px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-stamp {
  position: absolute;
  top: 9%;
  left: -3%;
  z-index: 2;
  display: grid;
  width: 138px;
  height: 138px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(177, 122, 28, 0.8);
  text-align: center;
  box-shadow: 0 18px 38px rgba(111, 73, 16, 0.18);
  backdrop-filter: blur(8px);
}

.hero-stamp span {
  font-size: 11px;
}

.hero-stamp strong {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.24em;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: var(--gold-pale);
}

.scroll-cue i::after {
  display: block;
  width: 35px;
  height: 1px;
  background: var(--gold);
  animation: scrollCue 2s ease-in-out infinite;
  content: "";
}

@keyframes scrollCue {
  from {
    transform: translateX(-35px);
  }
  to {
    transform: translateX(70px);
  }
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section-heading h2,
.center-heading h2,
.curriculum-heading h2,
.mentor-copy h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.section-heading > p,
.center-heading > p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 2;
}

.center-heading {
  max-width: 860px;
  margin: 0 auto 62px;
  text-align: center;
}

.center-heading .section-kicker {
  flex-direction: column;
}

.concerns {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 78% 55%, rgba(236, 215, 204, 0.55), transparent 25%),
    var(--white);
}

.concerns .section-heading h2 {
  font-size: clamp(32px, 3.4vw, 46px);
}

.concerns-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.concern-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concern-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
}

.concern-list span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 21px;
}

.concerns-answer {
  width: min(930px, calc(100% - 48px));
  margin: 90px auto 0;
  padding: 28px 36px;
  border: 1px solid var(--gold-pale);
  border-bottom: 0;
  color: var(--gold-deep);
  background: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 2.1vw, 28px);
  text-align: center;
  letter-spacing: 0.05em;
}

.concerns-answer span {
  margin: 0 10px;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: 40px;
}

.about {
  background:
    linear-gradient(rgba(189, 140, 45, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 140, 45, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.about::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--paper) 10%, transparent 65%);
  content: "";
  pointer-events: none;
}

.about .section-inner {
  position: relative;
  z-index: 1;
}

.method-diagram {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 45px);
}

.method-diagram article {
  position: relative;
  display: grid;
  width: clamp(210px, 21vw, 275px);
  aspect-ratio: 1;
  place-content: center;
  padding: 34px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.88);
  text-align: center;
  box-shadow: var(--shadow);
}

.method-number {
  position: absolute;
  top: 28px;
  left: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  transform: translateX(-50%);
}

.method-icon {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 32px;
}

.method-diagram h3 {
  margin: 4px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
}

.method-diagram p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.method-cross {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
}

.diagnosis-visual {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  margin: 76px 0 0;
  overflow: hidden;
  border: 1px solid var(--gold-pale);
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagnosis-visual-image {
  min-height: 420px;
  overflow: hidden;
}

.diagnosis-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diagnosis-visual figcaption {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px);
  background:
    radial-gradient(circle at 90% 10%, rgba(233, 199, 194, 0.38), transparent 34%),
    var(--white);
}

.diagnosis-visual figcaption::before {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 74px;
  height: 74px;
  border: 1px solid var(--gold-pale);
  border-radius: 50%;
  content: "";
}

.diagnosis-visual figcaption > span,
.flow-visual figcaption > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.diagnosis-visual figcaption strong,
.flow-visual figcaption strong {
  margin-top: 15px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.65;
  text-wrap: balance;
}

.diagnosis-visual figcaption strong {
  text-wrap: initial;
}

.diagnosis-visual figcaption p,
.flow-visual figcaption p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.audience {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.audience-grid article {
  position: relative;
  min-height: 235px;
  padding: 45px 18px 28px;
  border: 1px solid var(--line);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.audience-grid article:nth-child(2),
.audience-grid article:nth-child(5) {
  background: rgba(233, 199, 194, 0.2);
}

.audience-grid article:nth-child(3) {
  background: rgba(190, 199, 173, 0.2);
}

.audience-grid article:hover {
  border-color: var(--gold-pale);
  background: var(--paper);
  transform: translateY(-6px);
}

.audience-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 38px;
}

.audience-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.reasons {
  background:
    radial-gradient(circle at 10% 10%, rgba(233, 199, 194, 0.35), transparent 26%),
    var(--paper);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(84, 65, 27, 0.08);
}

.reason-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.reason-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(40, 31, 17, 0.32));
  content: "";
}

.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-photo--one img {
  object-position: center 25%;
}

.reason-photo--two img {
  object-position: center 23%;
}

.reason-photo--three img {
  object-position: center 25%;
}

.reason-photo > span {
  position: absolute;
  right: 18px;
  bottom: 8px;
  z-index: 1;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 48px;
}

.reason-copy {
  padding: 28px;
}

.reason-label {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reason-copy h3 {
  margin: 10px 0 15px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.reason-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.curriculum {
  color: #f8f3e9;
  background:
    radial-gradient(circle at 82% 15%, rgba(189, 140, 45, 0.22), transparent 26%),
    #27241f;
}

.curriculum .section-kicker {
  color: var(--gold-pale);
}

.curriculum-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 65px;
}

.curriculum-heading p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.66);
}

.flow-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  margin: 0 0 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.045);
}

.flow-visual > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.flow-visual figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 50px);
}

.flow-visual figcaption > span {
  color: var(--gold-pale);
}

.flow-visual figcaption strong {
  color: #fff;
  font-size: clamp(20px, 2.1vw, 28px);
}

.flow-visual figcaption p {
  color: rgba(255, 255, 255, 0.64);
}

.curriculum-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.curriculum-list li {
  display: grid;
  grid-template-columns: 68px 0.8fr 1.2fr 28px;
  align-items: center;
  gap: 28px;
  padding: 28px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.25s ease;
}

.curriculum-list li:hover {
  background: rgba(255, 255, 255, 0.035);
}

.curriculum-number {
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: 30px;
}

.curriculum-list small {
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.curriculum-list h3 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.curriculum-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.curriculum-mark {
  color: var(--gold);
  font-size: 20px;
}

.curriculum-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  text-align: right;
}

.mentor {
  background: var(--white);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.mentor-visual {
  position: relative;
  min-height: 670px;
}

.mentor-photo {
  position: absolute;
  inset: 0 7% 0 0;
  overflow: hidden;
  border-radius: 220px 220px 0 0;
  box-shadow: var(--shadow);
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.script-note--mentor {
  right: -6%;
  bottom: 5%;
  color: var(--rose-deep);
  font-size: clamp(28px, 3vw, 44px);
}

.script-note--mentor.script-note--jp {
  max-width: 330px;
  padding: 13px 18px;
  border: 1px solid rgba(182, 109, 100, 0.2);
  border-radius: 3px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 14px 34px rgba(83, 53, 34, 0.1);
  font-size: clamp(22px, 2.35vw, 33px);
  backdrop-filter: blur(8px);
}

.mentor-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.mentor-role {
  margin: 30px 0 4px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.mentor-name {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 25px;
}

.mentor-name span {
  margin-right: 12px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.mentor-copy > p:not(.mentor-role, .mentor-name) {
  color: var(--muted);
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mentor-tags li {
  padding: 7px 14px;
  border: 1px solid var(--gold-pale);
  border-radius: 100px;
  color: var(--gold-deep);
  background: var(--paper);
  font-size: 11px;
}

.practice {
  background:
    linear-gradient(180deg, rgba(233, 199, 194, 0.15), transparent 42%),
    var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.profile-card {
  --card-theme: var(--gold);
  --card-theme-deep: var(--gold-deep);
  --card-theme-pale: var(--paper-deep);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-theme-pale) 52%, transparent), transparent 34%),
    var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.profile-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--card-theme), var(--card-theme-deep));
  content: "";
}

.profile-card--sachi {
  --card-theme: #9b5f64;
  --card-theme-deep: #5f363d;
  --card-theme-pale: #faf0ec;
}

.profile-card--akane {
  --card-theme: #e77953;
  --card-theme-deep: #99452f;
  --card-theme-pale: #fff2e2;
}

.profile-card--yukako {
  --card-theme: #d29a45;
  --card-theme-deep: #855b28;
  --card-theme-pale: #fff7e8;
}

.profile-card--momoka {
  --card-theme: #8da7b7;
  --card-theme-deep: #526878;
  --card-theme-pale: #f3f5f8;
}

.profile-card:hover {
  box-shadow: 0 24px 60px rgba(79, 59, 24, 0.12);
  transform: translateY(-7px);
}

.profile-image {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: var(--paper-deep);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
}

.profile-image--brand {
  background: #efe0db;
}

.profile-image--brand img {
  object-fit: cover;
  object-position: center;
}

.profile-status {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 11px;
  border-radius: 100px;
  color: #fff;
  background: rgba(37, 35, 31, 0.72);
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.profile-body {
  padding: 23px 21px 25px;
}

.profile-body > p {
  margin: 0;
  color: var(--card-theme);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-body h3 {
  margin: 5px 0 16px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.profile-body dl {
  display: grid;
  gap: 6px;
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 11px;
}

.profile-body dl div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 7px;
}

.profile-body dt {
  color: var(--card-theme-deep);
}

.profile-body dd {
  margin: 0;
}

.profile-body > a {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--card-theme-deep);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.profile-pending {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 42px 24px 2px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 17px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  margin-left: auto;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
  content: "+";
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list summary span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 22px;
}

.faq-list details p {
  margin: -5px 0 0;
  padding: 0 42px 24px 41px;
  color: var(--muted);
  font-size: 13px;
}

.final-cta {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(38, 34, 28, 0.78), rgba(38, 34, 28, 0.9)),
    url("/assets/akane-02.jpg") center 25% / cover;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta .section-kicker {
  flex-direction: column;
  color: var(--gold-pale);
}

.final-cta h2 {
  margin-top: 19px;
}

.final-cta-inner > p:not(.script-note) {
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.78);
}

.button--large {
  min-width: min(380px, 100%);
  min-height: 66px;
}

.final-cta small {
  display: block;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.58);
}

.script-note--cta {
  position: static;
  margin: 35px auto 0;
  color: var(--gold-pale);
  font-size: clamp(28px, 3.4vw, 50px);
}

.script-note--cta.script-note--jp {
  font-size: clamp(24px, 2.7vw, 37px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.final-cta-orb {
  position: absolute;
  border: 1px solid rgba(231, 210, 165, 0.32);
  border-radius: 50%;
}

.final-cta-orb--one {
  top: -210px;
  left: -110px;
  width: 480px;
  height: 480px;
}

.final-cta-orb--two {
  right: -90px;
  bottom: -240px;
  width: 580px;
  height: 580px;
}

.site-footer {
  padding: 38px 24px;
  color: rgba(255, 255, 255, 0.7);
  background: #1f1d19;
}

.footer-inner {
  display: grid;
  width: min(1160px, 100%);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand-mark {
  color: var(--gold-pale);
}

.brand--footer .brand-copy small {
  color: rgba(255, 255, 255, 0.48);
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer nav a {
  font-size: 11px;
  text-decoration: none;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  font-size: 10px;
  text-align: right;
}

.mobile-only,
.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-2 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
    margin: 0 24px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    padding-right: 46px;
    padding-left: 46px;
  }

  .hero h1 {
    font-size: clamp(40px, 4.5vw, 58px);
  }

  .method-diagram {
    gap: 18px;
  }

  .method-diagram article {
    width: 215px;
    padding: 28px;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-grid article:last-child {
    grid-column: 2;
  }

  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 72px;
    font-size: 15px;
  }

  .site-header {
    width: 100%;
    min-height: 66px;
    padding: 8px 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 11px;
    right: 12px;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 23px;
    height: 1px;
    background: var(--ink);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-menu {
    position: fixed;
    inset: 66px 0 0;
    z-index: 999;
    display: block;
    padding: 36px 26px;
    background: rgba(251, 248, 241, 0.98);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 17px;
    text-decoration: none;
  }

  .section {
    padding: 82px 20px;
  }

  .hero {
    display: flex;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    min-height: auto;
    flex-direction: column;
    gap: 22px;
    padding: 104px 20px 64px;
  }

  .hero-copy {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
    flex: 0 0 auto;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.43;
  }

  .hero-course {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-actions .button {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    min-width: 0;
  }

  .hero-points {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 26px;
  }

  .hero-points li {
    min-width: 0;
    min-height: 104px;
    padding: 14px 5px 10px;
  }

  .hero-points strong {
    font-size: 13px;
  }

  .hero-points small {
    display: none;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    margin-top: 2px;
  }

  .hero-photo-frame {
    inset: 0 0 0 13%;
    border-radius: 50% 50% 6% 6% / 29% 29% 5% 5%;
  }

  .hero-photo-frame img {
    object-position: center 18%;
  }

  .hero-stamp {
    top: 5%;
    left: 0;
    width: 105px;
    height: 105px;
  }

  .hero-stamp strong {
    font-size: 12px;
  }

  .script-note {
    right: 4%;
    bottom: 5%;
    max-width: 72%;
    font-size: 30px;
  }

  .script-note--jp {
    max-width: 68%;
    font-size: 22px;
    line-height: 1.65;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .center-heading h2,
  .curriculum-heading h2,
  .mentor-copy h2,
  .final-cta h2 {
    font-size: 31px;
    line-height: 1.55;
  }

  .center-heading {
    margin-bottom: 42px;
  }

  .center-heading > p,
  .section-heading > p {
    font-size: 13px;
    line-height: 1.9;
  }

  .concerns-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .concern-list {
    gap: 9px;
  }

  .concern-list li {
    padding: 13px 5px;
    font-size: 14px;
  }

  .concerns-answer {
    width: calc(100% - 40px);
    margin-top: 55px;
    padding: 22px 10px;
    font-size: 15px;
    line-height: 1.9;
  }

  .concerns-answer span {
    display: none;
  }

  .method-diagram {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-diagram article {
    width: min(278px, 82vw);
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .method-cross {
    line-height: 1;
    text-align: center;
  }

  .diagnosis-visual {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .diagnosis-visual-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .diagnosis-visual figcaption {
    padding: 32px 25px 36px;
  }

  .diagnosis-visual figcaption::before {
    top: 19px;
    right: 19px;
    width: 54px;
    height: 54px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-grid article {
    min-height: 180px;
    padding: 28px 12px 20px;
  }

  .audience-grid article:last-child {
    grid-column: 1 / -1;
  }

  .audience-grid article > span {
    margin-bottom: 13px;
    font-size: 30px;
  }

  .audience-grid h3 {
    font-size: 12px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
  }

  .reason-photo {
    height: 310px;
  }

  .curriculum-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .flow-visual {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .flow-visual > img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-position: 58% center;
  }

  .flow-visual figcaption {
    padding: 27px 23px 30px;
  }

  .curriculum-heading p {
    font-size: 13px;
  }

  .curriculum-list li {
    grid-template-columns: 50px 1fr 24px;
    gap: 12px;
    padding: 22px 4px;
  }

  .curriculum-list li > p {
    grid-column: 2 / -1;
    margin-top: -7px;
  }

  .curriculum-number {
    align-self: start;
    font-size: 24px;
  }

  .curriculum-mark {
    grid-column: 3;
    grid-row: 1;
  }

  .curriculum-note {
    text-align: left;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mentor-visual {
    min-height: 530px;
  }

  .mentor-photo {
    inset-right: 0;
  }

  .script-note--mentor {
    right: -2%;
  }

  .profile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .profile-image {
    height: 245px;
  }

  .profile-body {
    padding: 17px 14px 19px;
  }

  .profile-body h3 {
    font-size: 17px;
  }

  .profile-body dl div {
    grid-template-columns: 35px 1fr;
  }

  .faq-list summary {
    gap: 12px;
    padding: 20px 3px;
    font-size: 14px;
  }

  .faq-list details p {
    padding: 0 5px 20px 35px;
  }

  .final-cta {
    padding-bottom: 90px;
    background-position: 58% 25%;
  }

  .final-cta-inner > p:not(.script-note) {
    font-size: 13px;
  }

  .site-footer {
    padding-bottom: 35px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
  }

  .site-footer p {
    text-align: left;
  }

  .mobile-only {
    display: initial;
  }

  .desktop-only {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 10px;
    bottom: 9px;
    left: 10px;
    z-index: 990;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    color: #fff;
    background: linear-gradient(135deg, #c99b42, #a87114);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(74, 48, 9, 0.34);
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    display: none;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .button {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 13px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profile-image {
    height: 360px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
