/* =================================================================
   加速キッチン・ハンドメイド部 — Pilot LP
   Aesthetic: クラフト × サイエンス ZINE
================================================================= */

:root {
  /* palette — romantic pastel */
  --paper:   #FCF6F1;
  --paper-2: #F6E8E0;
  --ink:      #5A3D52;
  --ink-soft: #7E6273;
  --yellow:   #F2D88F;
  --yellow-2: #FBEFD3;
  --coral:    #E89A8F;
  --coral-2:  #F8DDD6;
  --teal:     #A8C8B4;
  --teal-2:   #DDEBE0;
  --lavender: #B8A4D4;
  --lavender-2:#EADFF5;
  --red:      #C26E78;

  /* shadows */
  --shadow-soft: 0 10px 26px -8px rgba(90,61,82,0.18), 0 4px 8px -4px rgba(90,61,82,0.10);
  --shadow-card: 0 14px 32px -12px rgba(90,61,82,0.20), 0 4px 10px -4px rgba(90,61,82,0.10);
  --shadow-cta: 0 12px 24px -8px rgba(194,110,120,0.35), 0 4px 10px -4px rgba(90,61,82,0.14);
  --border-soft: 1px solid rgba(90,61,82,0.18);
  --border-line: 1px solid rgba(90,61,82,0.12);

  /* type */
  --ff-display: "Kaisei Decol", "Shippori Mincho", "Zen Maru Gothic", serif;
  --ff-hand: "Klee One", "Zen Maru Gothic", system-ui, sans-serif;
  --ff-body: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --ff-eye: "Klee One", "Zen Kaku Gothic New", sans-serif;
  --ff-mono: "Yomogi", "Klee One", "Zen Kaku Gothic New", sans-serif;
  --ff-mincho: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", serif;

  /* layout */
  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 64px);
  --pad-y: clamp(80px, 12vw, 180px);
}

/* ===== reset ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, p { margin: 0; }

::selection { background: var(--yellow); color: var(--ink); }

/* ===== grain overlay ===== */
.grain {
  pointer-events: none;
  position: fixed; inset: 0;
  z-index: 1000;
  mix-blend-mode: multiply;
  opacity: 0.09;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35 0 0 0 0 0.24 0 0 0 0 0.32 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  background-size: 220px 220px;
}

/* ===== paper background ===== */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(1000px 600px at 10% -10%, var(--coral-2) 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 110%, var(--lavender-2) 0%, transparent 65%),
    var(--paper);
  background-attachment: fixed;
}

/* ===== utility: highlighter ===== */
.hl {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hl::before {
  content: "";
  position: absolute;
  left: -.06em; right: -.06em;
  bottom: 0.04em;
  height: 0.38em;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-0.6deg);
  border-radius: 6px 10px 8px 12px / 6px 8px 12px 10px;
  opacity: 0.85;
}
.hl--coral::before { background: var(--coral-2); }
.hl--teal::before { background: var(--teal-2); }
.hl--lavender::before { background: var(--lavender-2); }
.hl--yellow::before { background: var(--yellow); }

/* ===== section eyebrow ===== */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono);
  font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 30px;
}
.section-eyebrow__num {
  display: inline-block;
  background: var(--lavender); color: var(--paper);
  padding: 4px 12px;
  font-weight: 600;
  border-radius: 999px;
  transform: rotate(-1deg);
}
.section-eyebrow__line {
  flex: 1; height: 1px;
  background: var(--ink);
  opacity: 0.22;
}
.section-eyebrow--inverted .section-eyebrow__num { background: var(--coral); }
.section-eyebrow--white * { color: var(--paper); }
.section-eyebrow--white .section-eyebrow__num { background: var(--paper); color: var(--ink); }
.section-eyebrow--white .section-eyebrow__line { background: var(--paper); opacity: 0.4; }

/* ===== section titles ===== */
.section-title {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}
.section-title__small {
  display: block;
  font-family: var(--ff-hand);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink-soft);
  margin-bottom: 10px;
  transform: translateX(6px);
}
.section-title__big {
  display: block;
  font-size: clamp(36px, 5.6vw, 76px);
  letter-spacing: 0.005em;
}
.section-title--center { text-align: center; }
.section-title--center .section-title__small { transform: none; }

/* =================================================================
   HEADER
================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252, 246, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-line);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex; align-items: center; gap: 24px;
}
.logo {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 4px;
  color: var(--ink);
}
.logo__bracket { font-family: var(--ff-hand); color: var(--coral); font-weight: 600; }
.logo__main i { font-style: normal; color: var(--coral); margin: 0 2px; }
.logo__img { height: 30px; width: auto; display: block; }
@media (max-width: 760px) { .logo__img { height: 26px; } }
.site-nav {
  margin-left: auto;
  display: flex; gap: 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
}
.site-nav a {
  position: relative;
  padding: 4px 0;
}
.site-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 5px; background: var(--coral-2);
  z-index: -1;
  border-radius: 4px;
}
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--paper);
  font-family: var(--ff-eye);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.header-cta:hover { background: var(--ink); transform: translateY(-1px); }
.header-cta svg { width: 22px; height: 12px; stroke: currentColor; fill: none; }

@media (max-width: 760px) {
  .site-nav { display: none; }
}

/* =================================================================
   HERO
================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px var(--pad-x) 60px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--paper);
}
/* booth-scene photo blended behind the hero (consent obtained for the
   pictured participants) — visible enough to read the activity */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  background: url(images/eye-catch.jpg) center/cover no-repeat;
  filter: blur(2px) saturate(1) brightness(1.04);
  transform: scale(1.05);
  opacity: 0.4;
  pointer-events: none;
  /* fade the photo out at the top and bottom so it has no hard seam
     where the hero section ends */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 60%, transparent 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(90,61,82,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90,61,82,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero__copy { min-width: 0; position: relative; }
/* soft, edgeless paper veil behind the copy text only, so the headline
   and lead stay legible while the booth photo behind the hero stays clear */
.hero__copy::before {
  content: "";
  position: absolute;
  inset: -28px -56px;
  z-index: -1;
  background: radial-gradient(
    ellipse 78% 82% at 30% 50%,
    rgba(252,246,241,0.9) 0%,
    rgba(252,246,241,0.74) 46%,
    rgba(252,246,241,0) 78%
  );
  pointer-events: none;
}
/* overlapping photo cluster — making → selling → finishing,
   styled as taped prints to match the handmade aesthetic */
.hero__media {
  margin: 0;
  min-width: 0;
  position: relative;
  aspect-ratio: 4 / 3.55;
}
.hero__photo {
  position: absolute;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border: 6px solid var(--paper);
  border-radius: 12px;
  box-shadow: 0 16px 32px -12px rgba(90,61,82,0.30),
              0 3px 10px -4px rgba(90,61,82,0.18);
  display: block;
}
.hero__photo--main {
  width: 64%;
  left: 3%;
  bottom: 7%;
  z-index: 2;
  transform: rotate(-3deg);
}
.hero__photo--top {
  width: 52%;
  right: 1%;
  top: 1%;
  z-index: 1;
  transform: rotate(3.5deg);
}
.hero__photo--btm {
  width: 47%;
  right: 4%;
  bottom: 1%;
  z-index: 3;
  transform: rotate(-5deg);
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}
@media (max-width: 480px) {
  .hero__media { aspect-ratio: 4 / 3.2; }
  .hero__photo { border-width: 5px; }
}
.hero__logo {
  display: block;
  width: min(440px, 72vw);
  height: auto;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .hero__logo { width: min(320px, 78vw); margin-bottom: 22px; }
}
.eyebrow {
  display: inline-flex; gap: 12px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 38px;
}
.eyebrow__tag {
  background: var(--ink); color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(-0.5deg);
}
.eyebrow__year {
  background: var(--coral); color: var(--paper);
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(0.8deg);
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(46px, 7.4vw, 116px);
  line-height: 1.14;
  letter-spacing: 0.005em;
  margin-bottom: 36px;
  position: relative;
}
.hero__line { display: block; white-space: nowrap; }
.hero__line--1 { transform: translateX(-2px); }
.hero__line--2 { padding-left: 0.6ch; }
.hero__line--3 { padding-left: 1.4ch; }
.hero__line--2 .hl::before { transform: rotate(-1.4deg); }

@media (max-width: 480px) {
  .hero__title { font-size: clamp(30px, 8.6vw, 44px); margin-bottom: 24px; }
  .hero__line--2, .hero__line--3 { padding-left: 0; }
}
/* in the two-column hero, cap the nowrap headline so it stays within the
   left copy column and never overlaps the right photo */
@media (min-width: 960px) {
  .hero__title { font-size: clamp(38px, 4.6vw, 72px); }
}
.hero__period { color: var(--coral); }
.bracket-l, .bracket-r { color: var(--coral); font-family: var(--ff-display); }

.hero__sub {
  max-width: 580px;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.95;
  margin-bottom: 40px;
  color: var(--ink-soft);
}
.hero__sub strong {
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(to top, var(--coral-2) 38%, transparent 38%);
  padding: 0 4px;
}

.hero__cta-wrap {
  position: relative;
  display: inline-block;
}
.hero__hand-note {
  position: absolute;
  left: calc(100% + 14px); top: 30%;
  font-family: var(--ff-hand);
  font-size: 14px;
  color: var(--red);
  white-space: nowrap;
}
.cta-arrow-doodle {
  position: absolute;
  top: -50px; left: -130px;
  width: 160px; height: 80px;
  pointer-events: none;
  color: var(--red);
  opacity: 0.7;
}

/* big CTA */
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-eye);
  font-weight: 600;
  background: var(--ink); color: var(--paper);
  padding: 18px 34px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-cta);
  border: 1.5px solid transparent;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -10px rgba(194,110,120,0.45), 0 6px 14px -6px rgba(90,61,82,0.18);
  background: var(--coral);
}
.cta__arrow { width: 30px; height: 14px; stroke: currentColor; fill: none; }
.cta--big { font-size: 19px; padding: 22px 42px; }
.cta--giant {
  font-size: clamp(22px, 2.4vw, 30px);
  padding: 28px 50px;
  background: var(--coral);
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 18px 36px -10px rgba(194,110,120,0.5), 0 6px 14px -6px rgba(90,61,82,0.18);
}
.cta--giant:hover {
  background: var(--ink); color: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -10px rgba(90,61,82,0.4), 0 8px 16px -6px rgba(90,61,82,0.18);
}
.cta--ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(252,246,241,0.6);
  box-shadow: none;
  font-size: 16px;
}
.cta--ghost:hover {
  background: rgba(252,246,241,0.12);
  color: var(--paper);
  border-color: var(--paper);
}

/* hero ribbon */
.hero__ribbon {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  font-family: var(--ff-eye);
  font-weight: 400;
  font-size: 14px;
}
.hero__ribbon li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: var(--border-soft);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero__ribbon li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(90,61,82,0.22);
}
.hero__ribbon li:nth-child(1) { transform: rotate(-0.6deg); }
.hero__ribbon li:nth-child(2) { transform: rotate(0.4deg); }
.hero__ribbon li:nth-child(3) { transform: rotate(-0.3deg); }
.hero__ribbon li:nth-child(4) { transform: rotate(0.7deg); }

/* floating motifs */
.float {
  position: absolute;
  pointer-events: none;
}
.float--atom { width: 110px; top: 22%; left: 6%; animation: floatA 9s ease-in-out infinite; }
.float--flask { width: 76px; top: 60%; right: 8%; animation: floatB 11s ease-in-out infinite; }
.float--lens { width: 200px; bottom: 4%; right: 6%; opacity: 0.55; animation: floatC 14s ease-in-out infinite; }
.float--squiggle { width: 90px; top: 12%; left: 38%; opacity: 0.7; animation: floatA 7s ease-in-out infinite reverse; }
@keyframes floatA {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-12px) rotate(4deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-16px) rotate(4deg); }
}
@keyframes floatC {
  0%,100% { transform: rotate(0); }
  50%     { transform: rotate(8deg); }
}

/* recruit soft badge */
.stamp {
  position: absolute;
  top: 8%; right: 6%;
  width: 168px; height: 168px;
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 5;
  color: var(--red);
}
.stamp svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.stamp__text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--red);
  text-align: center;
  font-family: var(--ff-hand);
}
.stamp__t1 { font-size: 13px; letter-spacing: 0.14em; font-family: var(--ff-eye); }
.stamp__t2 {
  font-size: 60px; line-height: 0.95;
  font-family: var(--ff-display);
  font-weight: 700;
}
.stamp__t3 { font-size: 12px; letter-spacing: 0.14em; font-family: var(--ff-eye); }
.stamp__t4 { font-family: var(--ff-mono); font-size: 12px; margin-top: 6px; letter-spacing: 0.14em; }

@media (max-width: 900px) {
  .stamp { right: 4%; width: 110px; height: 110px; }
  .stamp__t2 { font-size: 42px; }
}
@media (max-width: 600px) {
  .float--atom, .float--flask { display: none; }
  .float--lens { width: 160px; opacity: 0.5; }
  .stamp { width: 92px; height: 92px; top: 4%; }
  .stamp__t2 { font-size: 38px; }
  .stamp__t1, .stamp__t3, .stamp__t4 { font-size: 9px; }
  .cta-arrow-doodle { display: none; }
  .hero__hand-note { display: none; }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  left: var(--pad-x); bottom: 24px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.scroll-hint svg { width: 12px; height: 28px; stroke: currentColor; fill: none; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); opacity: 0.6; }
  50%     { transform: translateY(4px); opacity: 1; }
}

/* =================================================================
   ABOUT
================================================================= */
.about {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.about__grid {
  display: block;
}
.about__copy { padding-top: 14px; }
.about__lead {
  font-family: var(--ff-mincho);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.95;
  margin-bottom: 28px;
}
.dropcap {
  font-family: var(--ff-mincho);
  font-weight: 700;
  font-size: 1.3em;
  color: var(--coral);
}
.about__body em { font-style: normal; color: var(--coral); font-weight: 700; }
.about__body strong {
  font-family: var(--ff-body);
  font-weight: 700;
  background: linear-gradient(to top, var(--teal-2) 36%, transparent 36%);
  padding: 0 4px;
}
.about__body u {
  text-decoration: none;
  background: linear-gradient(to top, var(--yellow) 36%, transparent 36%);
  padding: 0 3px;
}


/* =================================================================
   EXAMPLES (corkboard / scrap)
================================================================= */
.examples {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(90,61,82,0.03) 39px 40px),
    var(--paper);
}
.examples__board {
  max-width: var(--max-w);
  margin: 60px auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.scrap {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  padding: 16px 16px 26px;
  border-radius: 14px;
  border: var(--border-line);
  box-shadow: var(--shadow-card);
  transform: rotate(var(--rot, 0));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.scrap:hover {
  transform: rotate(0) translateY(-6px) scale(1.02);
  box-shadow: 0 24px 44px -10px rgba(90,61,82,0.25);
  z-index: 2;
}
.scrap__visual {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(90,61,82,0.08);
}
.scrap__visual svg { width: 100%; height: auto; display: block; }
.scrap__visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.scrap__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.35;
  margin-bottom: 8px;
}
.scrap__caption {
  font-family: var(--ff-hand);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}
/* soft ribbon on top of scrap */
.scrap__tape {
  position: absolute;
  width: 78px; height: 18px;
  border-radius: 4px;
  background: rgba(232, 154, 143, 0.28);
  box-shadow: 0 2px 4px rgba(90,61,82,0.08);
}
.scrap__tape--top-left { top: -8px; left: 22px; transform: rotate(-3deg); background: rgba(184, 164, 212, 0.32); }
.scrap__tape--top-right { top: -8px; right: 22px; transform: rotate(3.5deg); background: rgba(232, 154, 143, 0.28); }
/* tiny soft pin (with inner highlight) */
.scrap__pin {
  position: absolute;
  top: 12px; right: 16px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 2px 5px rgba(90,61,82,0.18), inset 0 0 0 2px rgba(252,246,241,0.5);
}
.scrap__pin--coral    { background: var(--coral); }
.scrap__pin--teal     { background: var(--teal); }
.scrap__pin--yellow   { background: var(--yellow); }
.scrap__pin--lavender { background: var(--lavender); }

@media (max-width: 900px) {
  .examples__board { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 560px) {
  .examples__board { grid-template-columns: 1fr; }
}

/* =================================================================
   PROGRAM (5 reactions)
================================================================= */
.program {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.program__list {
  margin-top: 50px;
  display: flex; flex-direction: column;
  gap: 24px;
}
.prog {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 28px 30px 14px;
  border-bottom: 1px dashed rgba(126,98,115,0.3);
  position: relative;
}
.prog:last-child { border-bottom: 0; }
.prog__num {
  font-family: var(--ff-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-soft);
}
.prog__num span {
  font-size: 38px;
  letter-spacing: -0.02em;
}
.prog:nth-child(1) .prog__num { background: var(--coral); }
.prog:nth-child(2) .prog__num { background: var(--teal); }
.prog:nth-child(3) .prog__num { background: var(--lavender); }
.prog:nth-child(4) .prog__num { background: var(--yellow); color: var(--ink); }
.prog:nth-child(5) .prog__num { background: var(--ink); }
.prog__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  margin-bottom: 12px;
}
.prog__title strong, .prog__text strong {
  font-family: var(--ff-body);
  font-weight: 700;
}
.prog__text {
  max-width: 700px;
  margin-bottom: 14px;
}
.prog__text u {
  text-decoration: none;
  background: linear-gradient(to top, var(--yellow) 36%, transparent 36%);
  padding: 0 3px;
}
.prog__text strong {
  background: linear-gradient(to top, var(--coral-2) 36%, transparent 36%);
  padding: 0 3px;
}
.prog__chip {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  background: var(--paper-2);
  border: var(--border-line);
  border-radius: 999px;
  padding: 4px 14px;
  letter-spacing: 0.06em;
  transform: rotate(-0.6deg);
}

@media (max-width: 700px) {
  .prog { grid-template-columns: 64px 1fr; gap: 18px; padding: 22px 0; }
  .prog__num { width: 64px; height: 64px; }
  .prog__num span { font-size: 26px; }
}

/* =================================================================
   FLOW (timeline)
================================================================= */
.flow {
  background: linear-gradient(165deg, #5A3D52 0%, #6B4A60 100%);
  color: var(--paper);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.flow::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(252,246,241,0.10) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  pointer-events: none;
}
.flow .section-title__small { color: rgba(252,246,241,0.78); }
.flow .section-title__big { color: var(--paper); }
.flow .section-eyebrow * { color: var(--paper); }
.flow .section-eyebrow__num { background: var(--coral); color: var(--paper); }
.flow .section-eyebrow__line { background: var(--paper); opacity: 0.32; }

.flow__note {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: rgba(252,246,241,0.75);
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}
.flow__steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 30px 60px;
}
.flow__steps::before {
  content: "";
  position: absolute;
  left: 22px; top: 30px; bottom: 30px;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, rgba(252,246,241,0.45) 0 6px, transparent 6px 14px);
}
.step {
  position: relative;
  padding: 18px 0 18px 30px;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
  align-items: center;
}
.step__dot {
  position: absolute;
  left: -54px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid rgba(252,246,241,0.6);
  box-shadow: 0 0 0 4px rgba(252,246,241,0.08);
}
.step__label {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  white-space: nowrap;
}
.step__detail {
  font-family: var(--ff-body);
  font-size: 14px;
  color: rgba(252,246,241,0.72);
}
.step--milestone .step__dot { background: var(--teal); border-color: var(--teal); }
.step--milestone .step__label { color: var(--teal); }
.step--goal .step__dot { background: var(--coral); border-color: var(--coral); width: 34px; height: 34px; left: -59px; }
.step--goal .step__label {
  color: var(--coral);
  font-size: clamp(24px, 2.6vw, 34px);
}
.step--goal {
  background: rgba(232,154,143,0.10);
  padding-left: 36px;
  padding-right: 16px;
  border-radius: 14px;
}

@media (max-width: 700px) {
  .step { grid-template-columns: 1fr; row-gap: 4px; }
}

/* =================================================================
   PEOPLE
================================================================= */
.people {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.people__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.person {
  background: var(--paper);
  border: var(--border-soft);
  border-radius: 16px;
  padding: 0;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.person::before {
  content: "Profile";
  position: absolute; top: -10px; left: 16px;
  background: var(--coral); color: var(--paper);
  font-family: var(--ff-mono); font-size: 11px;
  padding: 4px 12px; letter-spacing: 0.1em;
  border-radius: 999px;
  z-index: 1;
}
.person:nth-child(1) { transform: rotate(-0.5deg); }
.person:nth-child(2) { transform: rotate(0.4deg); margin-top: 14px; }
.person:nth-child(3) { transform: rotate(-0.3deg); }
.person:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px -10px rgba(90,61,82,0.25);
}
.person__photo {
  background: var(--paper-2);
  border-bottom: var(--border-line);
}
.person__photo svg { width: 100%; height: auto; }
.person__photo img,
.person__img {
  width: 100%;
  aspect-ratio: 1 / 1;            /* 既存 SVG(200x200) と同じ正方形でカード高さを揃える */
  object-fit: cover;
  object-position: center 28%;    /* 顔が上寄りになりやすいので上方クロップ */
  display: block;
}
.person__info {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.person__role {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  background: var(--lavender-2); color: var(--ink);
  align-self: flex-start;
  padding: 3px 12px;
  border-radius: 999px;
}
.person__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}
.person__bio {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.person__works-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-top: 6px;
}
.person__works {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.person__work {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(90,61,82,0.10);
  background: var(--paper-2);
}
@media (max-width: 800px) {
  .people__grid { grid-template-columns: 1fr; }
}

.people__sub {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 80px;
  margin-bottom: 24px;
}
.places {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.place {
  position: relative;
  padding: 0;
  background: var(--paper);
  border: var(--border-soft);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.place__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: var(--border-line);
}
.place__name { padding: 16px 20px 0; }
.place__desc { padding: 0 20px 22px; }
.place__pin {
  position: absolute;
  top: 14px; left: 14px;
  width: 60px; height: 60px;
  background: var(--lavender); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-mono);
  font-size: 13px; letter-spacing: 0.04em;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-soft);
}
.place:nth-child(2) .place__pin { background: var(--coral); }
.place:nth-child(3) .place__pin { background: var(--teal); color: var(--ink); }
.place__name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.place__name a {
  color: inherit;
  border-bottom: 1px dashed rgba(90,61,82,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.place__name a:hover {
  color: var(--coral);
  border-color: var(--coral);
}
.place__desc {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 800px) {
  .places { grid-template-columns: 1fr; }
}

/* =================================================================
   DETAILS
================================================================= */
.details {
  padding: var(--pad-y) var(--pad-x);
  background: linear-gradient(180deg, var(--coral-2) 0%, var(--yellow-2) 100%);
  position: relative;
}
.details::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(90,61,82,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(90,61,82,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}
.details > * { position: relative; }
.details__list {
  max-width: 840px;
  margin: 50px auto 0;
  display: grid;
  gap: 0;
  background: var(--paper);
  border: var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px -14px rgba(90,61,82,0.22), 0 6px 14px -6px rgba(90,61,82,0.12);
}
.details__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  border-bottom: 1px dashed rgba(126,98,115,0.28);
}
.details__row:last-child { border-bottom: 0; }
.details__row dt {
  background: var(--lavender-2);
  color: var(--ink);
  padding: 20px 22px;
  font-family: var(--ff-eye);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  display: flex; align-items: center;
}
.details__row dd {
  margin: 0;
  padding: 20px 26px;
  font-size: 14.5px;
  line-height: 1.9;
}
.details__row dd strong {
  font-family: var(--ff-body);
  font-weight: 700;
  background: linear-gradient(to top, var(--yellow) 38%, transparent 38%);
  padding: 0 4px;
}
@media (max-width: 700px) {
  .details__row { grid-template-columns: 1fr; }
  .details__row dt { padding: 10px 16px; font-size: 12px; }
  .details__row dd { padding: 14px 18px; }
}

/* =================================================================
   FAQ
================================================================= */
.faq {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 24px;
}
.qa {
  background: var(--paper);
  border: var(--border-soft);
  border-radius: 18px;
  padding: 5px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.qa--1 { background: var(--coral-2); transform: rotate(-0.4deg); }
.qa--2 { background: var(--teal-2); transform: rotate(0.3deg); }
.qa--3 { background: var(--lavender-2); transform: rotate(-0.2deg); }
.qa--4 { background: var(--yellow-2); transform: rotate(0.4deg); }
.qa--5 { background: var(--coral-2); transform: rotate(-0.3deg); }
.qa--6 { background: var(--teal-2); transform: rotate(0.2deg); }
.qa details {
  background: var(--paper);
  padding: 20px 24px;
  border-radius: 14px;
}
.qa summary {
  font-family: var(--ff-eye);
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex; gap: 12px;
  position: relative;
  padding-right: 30px;
  line-height: 1.55;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 24px;
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--lavender);
  transition: transform 0.25s ease;
}
.qa[open] summary::after, .qa details[open] summary::after { transform: rotate(45deg); }
.qa__q {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 22px;
  line-height: 1;
}
.qa details p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(126,98,115,0.32);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .faq__list { grid-template-columns: 1fr; }
}

/* =================================================================
   APPLY
================================================================= */
.apply {
  background: linear-gradient(165deg, #5A3D52 0%, #6B4A60 60%, #8A5F76 100%);
  color: var(--paper);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.apply::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(232,154,143,0.22) 0%, transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(184,164,212,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.apply__inner {
  position: relative;
  max-width: 980px; margin: 0 auto;
  text-align: center;
}
.apply__title {
  font-family: var(--ff-display);
  font-weight: 700;
  margin: 30px 0;
  line-height: 1.2;
}
.apply__line {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  color: rgba(252,246,241,0.92);
}
.apply__line i { font-style: normal; color: var(--coral); margin: 0 6px; font-size: 1.2em; }
.apply__line--big {
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 1.1;
  margin-top: 14px;
}
.apply__line--big .hl::before { background: var(--yellow); height: 0.36em; opacity: 0.85; }

.apply__lead {
  max-width: 560px; margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.95;
  color: rgba(252,246,241,0.88);
}

.apply__cta-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 22px;
  margin-bottom: 50px;
}
.apply__or {
  font-family: var(--ff-mono);
  letter-spacing: 0.14em;
  color: rgba(252,246,241,0.65);
}
.apply__contact {
  font-size: 13px;
  color: rgba(252,246,241,0.75);
}
.apply__contact a {
  border-bottom: 1px dashed rgba(252,246,241,0.55);
}
.apply__contact a:hover { color: var(--yellow); border-color: var(--yellow); }

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  padding: 44px var(--pad-x);
  background: var(--paper-2);
  border-top: var(--border-line);
  font-size: 12.5px;
  line-height: 1.85;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.site-footer__org {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.site-footer__addr,
.site-footer__tel {
  color: var(--ink-soft);
}
.site-footer__meta {
  text-align: right;
  color: var(--ink-soft);
}
.site-footer__note {
  margin-top: 6px;
  font-size: 11px;
}
@media (max-width: 700px) {
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__meta { text-align: left; }
}

/* =================================================================
   STICKY CTA
================================================================= */
.sticky-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 90;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--ff-eye);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 26px -6px rgba(194,110,120,0.45), 0 4px 10px -4px rgba(90,61,82,0.16);
  border: 1.5px solid transparent;
  transform: translateY(120%) rotate(-1deg);
  transition: transform 0.4s ease, background 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0) rotate(-1deg); }
.sticky-cta:hover { transform: translateY(-2px) rotate(0); background: var(--ink); }

@media (max-width: 600px) {
  .sticky-cta { bottom: 14px; right: 14px; padding: 12px 18px; font-size: 13px; }
}

/* =================================================================
   INTRO ANIMATION (load)
================================================================= */
.hero__title .hero__line {
  opacity: 0;
  transform: translateY(40px) rotate(2deg);
  animation: heroIn 1.2s cubic-bezier(.19,1,.22,1) forwards;
}
.hero__line--1 { animation-delay: 0.1s; }
.hero__line--2 { animation-delay: 0.32s; }
.hero__line--3 { animation-delay: 0.54s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.hero__sub, .hero__cta-wrap, .hero__ribbon {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s cubic-bezier(.19,1,.22,1) forwards;
}
.hero__sub { animation-delay: 0.6s; }
.hero__cta-wrap { animation-delay: 0.85s; }
.hero__ribbon { animation-delay: 1.1s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

.stamp {
  opacity: 0;
  animation: stampIn 0.6s cubic-bezier(.19,1,.22,1) 1.4s forwards;
}
@keyframes stampIn {
  0% { opacity: 0; transform: rotate(-4deg) scale(1.6); }
  100% { opacity: 1; transform: rotate(-4deg) scale(1); }
}

/* reveal-on-scroll (IntersectionObserver-driven) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(.19,1,.22,1),
    transform 0.85s cubic-bezier(.19,1,.22,1);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition: none !important; }
  .float { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* print baseline */
@media print {
  body::before, .grain, .sticky-cta, .float { display: none; }
  .site-header { position: static; }
}

/* =================================================================
   APPLY MODAL
================================================================= */
.hm-modal-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(16px, 5vh, 64px) 16px;
  background: rgba(45, 28, 42, 0.62);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  animation: hm-fade 0.25s ease;
}
.hm-modal-overlay[hidden] { display: none; }
@keyframes hm-fade { from { opacity: 0; } to { opacity: 1; } }

.hm-modal-card {
  position: relative;
  width: 100%; max-width: 620px;
  background: var(--paper);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 30px 70px -20px rgba(45,28,42,0.55), 0 10px 24px -10px rgba(90,61,82,0.3);
  border: var(--border-soft);
  animation: hm-pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes hm-pop { from { opacity: 0; transform: translateY(18px) scale(0.98); } to { opacity: 1; transform: none; } }

.hm-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px;
  background: var(--paper-2); color: var(--ink);
  font-size: 16px; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hm-modal-close:hover { background: var(--coral); color: var(--paper); transform: rotate(90deg); }

.hm-modal-header { text-align: center; margin-bottom: 26px; }
.hm-modal-eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.hm-modal-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 10px;
  color: var(--ink);
}
.hm-modal-lead {
  font-size: 14px; line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
.hm-modal-lead strong { color: var(--coral); }

.hm-modal-flow {
  list-style: none;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 6px 8px;
  margin: 22px 0 0; padding: 18px 14px;
  background: var(--yellow-2);
  border-radius: 16px;
}
.hm-mf-step { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink); }
.hm-mf-num {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  font-family: var(--ff-mono); font-size: 12px;
}
.hm-mf-step small { color: var(--ink-soft); font-size: 0.85em; }
.hm-mf-arrow { color: var(--ink-soft); font-size: 12px; }
.hm-mf-goal .hm-mf-num { background: var(--coral); }

.hm-modal-form { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.hm-field { display: flex; flex-direction: column; gap: 7px; }
.hm-field > label,
.hm-field-label {
  font-family: var(--ff-eye);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.hm-req {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--coral-2); color: var(--red);
  font-family: var(--ff-mono);
  font-size: 10px; font-weight: 400; letter-spacing: 0.04em;
  vertical-align: middle;
}
.hm-field input[type="text"],
.hm-field input[type="email"],
.hm-field select,
.hm-field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(90,61,82,0.22);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hm-field textarea { resize: vertical; line-height: 1.7; }
.hm-field input:focus,
.hm-field select:focus,
.hm-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,154,143,0.22);
}
.hm-field input::placeholder,
.hm-field textarea::placeholder { color: rgba(126,98,115,0.55); }

.hm-name-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hm-name-part { display: flex; flex-direction: column; gap: 5px; }
.hm-name-sub { font-size: 11.5px; color: var(--ink-soft); font-family: var(--ff-mono); }

.hm-radio-group { display: flex; flex-direction: column; gap: 10px; }
.hm-radio {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--ink); cursor: pointer;
  padding: 11px 14px;
  border: 1.5px solid rgba(90,61,82,0.18);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hm-radio:hover { border-color: var(--coral); background: var(--coral-2); }
.hm-radio input { accent-color: var(--coral); width: 16px; height: 16px; }

.hm-consent {
  background: var(--lavender-2);
  border-radius: 14px;
  padding: 16px 18px;
}
.hm-consent-row { display: flex; align-items: flex-start; gap: 14px; cursor: pointer; }
.hm-consent-row input { position: absolute; opacity: 0; width: 0; height: 0; }
.hm-consent-switch {
  flex: none;
  width: 46px; height: 26px;
  border-radius: 999px;
  background: rgba(90,61,82,0.28);
  position: relative;
  transition: background 0.22s ease;
  margin-top: 2px;
}
.hm-consent-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(45,28,42,0.3);
  transition: transform 0.22s ease;
}
.hm-consent-row input:checked + .hm-consent-switch { background: var(--coral); }
.hm-consent-row input:checked + .hm-consent-switch .hm-consent-knob { transform: translateX(20px); }
.hm-consent-row input:focus-visible + .hm-consent-switch { box-shadow: 0 0 0 3px rgba(232,154,143,0.4); }
.hm-consent-text { display: flex; flex-direction: column; gap: 4px; }
.hm-consent-title { font-family: var(--ff-eye); font-weight: 600; font-size: 14px; color: var(--ink); }
.hm-consent-desc { font-size: 12px; line-height: 1.7; color: var(--ink-soft); }

.hm-modal-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 6px;
}
.hm-modal-actions .cta {
  justify-content: center;
  width: 100%;
}
.hm-modal-actions .cta--giant {
  font-size: 18px;
  padding: 18px 28px;
}
.hm-modal-actions .cta--giant[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.hm-modal-actions .cta--ghost {
  color: var(--ink);
  border-color: rgba(90,61,82,0.3);
  font-size: 15px;
  padding: 14px 24px;
}
.hm-modal-actions .cta--ghost:hover {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--ink);
}

.hm-modal-line-alt { margin-top: 24px; text-align: center; }
.hm-modal-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-soft); font-size: 12px;
  font-family: var(--ff-mono);
  margin-bottom: 18px;
}
.hm-modal-divider::before,
.hm-modal-divider::after {
  content: ""; flex: 1; height: 1px;
  background: rgba(90,61,82,0.18);
}
.hm-line-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  font-family: var(--ff-eye); font-weight: 600; font-size: 16px;
  color: #fff; background: #06C755;
  padding: 15px 24px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 22px -8px rgba(6,199,85,0.5);
}
.hm-line-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.hm-line-note { font-size: 12px; color: var(--ink-soft); margin: 12px 0 0; }

.hm-modal-success { text-align: center; padding: 20px 0 6px; }
.hm-modal-success[hidden] { display: none; }
.hm-success-mark {
  font-size: 40px; color: var(--coral);
  margin-bottom: 8px;
}
.hm-modal-success h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 24px; color: var(--ink); margin: 0 0 12px;
}
.hm-modal-success p { font-size: 14px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 22px; }
.hm-modal-success .cta--ghost {
  width: auto; color: var(--ink);
  border-color: rgba(90,61,82,0.3);
}
.hm-modal-success .cta--ghost:hover { background: var(--paper-2); color: var(--ink); border-color: var(--ink); }

@media (max-width: 540px) {
  .hm-modal-card { padding: 26px 20px; border-radius: 20px; }
  .hm-name-split { grid-template-columns: 1fr; }
  .hm-modal-flow { gap: 4px 6px; padding: 14px 10px; }
  .hm-mf-step { font-size: 11.5px; }
}

/* =================================================================
   FLOW — fes photo
================================================================= */
.flow__fes {
  position: relative;
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(-0.5deg);
}
.flow__fes img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__fes figcaption {
  font-family: var(--ff-hand);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  text-align: center;
  padding: 16px 24px 20px;
}
@media (max-width: 540px) {
  .flow__fes { margin-top: 40px; transform: none; }
  .flow__fes figcaption { font-size: 13px; padding: 14px 18px 18px; }
}

.flow__diagram {
  max-width: 1100px;
  margin: 56px auto 0;
}
.flow__diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__diagram figcaption {
  font-family: var(--ff-hand);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(252,246,241,0.78);
  text-align: center;
  padding: 16px 16px 0;
}
.program .flow__diagram figcaption {
  color: var(--ink-soft);
}
@media (max-width: 540px) {
  .flow__diagram { margin-top: 40px; }
  .flow__diagram figcaption { font-size: 13px; }
}

/* =================================================================
   MONEY (budget & sales — moved from guardian.html)
================================================================= */
.money {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
}
.money__chart {
  max-width: 720px;
  margin: 44px auto 0;
}
.money__lead {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  margin: 0 0 30px;
}
.money__lead strong {
  font-weight: 700;
}

/* ---- money scenario bar chart ---- */
.g-chart {
  margin: 26px 0 8px;
  display: grid;
  gap: 26px;
}
.g-chart__intro {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
  margin: 0;
}
.g-case { margin: 0; }
.g-case__title {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
  font-family: var(--ff-eye); font-weight: 600;
  font-size: 15px; color: var(--ink);
  margin-bottom: 14px;
}
.g-case__tag {
  flex: none;
  font-family: var(--ff-mono); font-size: 11.5px; letter-spacing: 0.06em;
  padding: 3px 11px; border-radius: 999px; line-height: 1.4;
}
.g-case__tag--soft { background: var(--lavender-2); color: var(--ink-soft); }
.g-case__tag--good { background: var(--yellow); color: var(--ink); }

.g-case__row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 8px;
}
.g-case__label {
  flex: none; width: 96px;
  font-family: var(--ff-body); font-size: 13px; font-weight: 700;
  color: var(--ink); line-height: 1.4;
  display: flex; flex-direction: column;
}
.g-case__label small {
  font-weight: 400; font-size: 11px; color: var(--ink-soft);
}
.g-bar {
  flex: 1; display: flex;
  height: 36px; border-radius: 6px; overflow: hidden;
  background: rgba(126,98,115,0.08);
}
.g-seg {
  width: var(--w);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-body); font-size: 11.5px; font-weight: 700;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding: 0 6px;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.g-seg--cost    { background: var(--coral); }
.g-seg--sales   { background: var(--teal); }
.g-seg--surplus { background: var(--yellow); }
.g-seg--fill {
  color: var(--ink-soft);
  background:
    repeating-linear-gradient(
      -45deg,
      var(--lavender-2) 0 7px,
      #e2d4f0 7px 14px
    );
}
.g-case__result {
  font-family: var(--ff-body); font-size: 14px; line-height: 1.85;
  margin: 10px 0 0; padding-left: 14px;
  border-left: 3px solid transparent;
}
.g-case__result strong { font-weight: 700; }
.g-case__result--neutral {
  color: var(--ink-soft); border-left-color: rgba(184,164,212,0.55);
}
.g-case__result--good {
  color: var(--ink); border-left-color: var(--yellow);
}
.g-chart__legend {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-family: var(--ff-body); font-size: 12px; color: var(--ink-soft);
  margin: 2px 0 0;
}
.g-chart__legend span { display: inline-flex; align-items: center; gap: 6px; }
.g-chart__legend i {
  width: 13px; height: 13px; border-radius: 3px; flex: none;
}
.g-chart__legend .lg-cost    { background: var(--coral); }
.g-chart__legend .lg-sales   { background: var(--teal); }
.g-chart__legend .lg-surplus { background: var(--yellow); }
.g-chart__legend .lg-fill {
  background:
    repeating-linear-gradient(-45deg, var(--lavender-2) 0 4px, #e2d4f0 4px 8px);
}
.g-note {
  font-family: var(--ff-body);
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 22px 0 0;
  padding: 14px 16px;
  background: rgba(126,98,115,0.05);
  border-radius: 8px;
}
@media (max-width: 560px) {
  .g-case__row { flex-direction: column; align-items: stretch; gap: 6px; }
  .g-case__label { width: auto; flex-direction: row; gap: 8px; align-items: baseline; }
}
@media (prefers-reduced-motion: reduce) {
  .g-seg { transition: none; }
}
