/* ================================================================
   KANASA Conditioning Studio — Design System v4.1
   3-axis: KANASA Concept × newans.jp Motion × Apple Design Language
   ================================================================ */

/* ── §1 Design Tokens (v4.1) ── */
:root {
  /* Brand Colors — #586b7a 基準 */
  --brand-900: #2d3942;
  --brand-800: #3f4e58;
  --brand-700: #4a5b66;
  --brand-600: #586b7a;  /* ⭐ メインブランドカラー（変更禁止） */
  --brand-500: #6b7d8b;
  --brand-400: #8a99a4;
  --brand-300: #b0bbc3;
  --brand-200: #d3d9de;
  --brand-100: #ebeef0;
  --brand-50:  #f5f7f8;

  --white:     #ffffff;
  --black:     #0a0a0a;
  --gray-text: #4a4a4a;
  --accent:    #8a7355;  /* 装飾アクセント（divider・FAQ等） */

  /* Fonts */
  --font-en: 'Cinzel', serif;
  --font-jp: 'ロダンM', 'A-OTF Rodan Pro M', 'Rodan M',
             'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;

  /* Fluid Typography */
  --fs-display: clamp(3.2rem, 9vw, 8rem);
  --fs-h1:      clamp(2.4rem, 7vw, 5rem);
  --fs-h2:      clamp(1.75rem, 5vw, 3.2rem);
  --fs-h3:      clamp(0.95rem, 2.5vw, 1.15rem);
  --fs-body:    clamp(0.84rem, 2.4vw, 1.02rem);
  --fs-small:   clamp(0.78rem, 2vw, 0.9rem);
  --fs-label:   clamp(0.65rem, 1.5vw, 0.75rem);

  /* Font Weight Guard (300以下禁止) */
  --fw-body:   400;
  --fw-medium: 500;
  --fw-bold:   700;

  /* Spacing — fluid */
  --space-section: clamp(6rem, 14vw, 12rem);
  --space-block:   clamp(2.5rem, 6vw, 5rem);
  --space-element: clamp(1rem, 2vw, 1.5rem);
  --space-inline:  clamp(1.25rem, 4vw, 3rem);

  /* Layout */
  --container-max:    1280px;
  --container-narrow: 880px;
  --gutter:           clamp(1.25rem, 4vw, 3rem);

  /* Motion */
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast:    400ms;
  --dur-base:    800ms;
  --dur-slow:    1200ms;

  /* Typography details */
  --tracking-tight:  -0.02em;
  --tracking-base:   0;
  --tracking-wide:   0.08em;
  --tracking-wider:  0.15em;
  --leading-tight:   1.2;
  --leading-base:    1.6;
  --leading-loose:   2.0;
}

/* Bridge aliases — 既存 HTML との後方互換 */
:root {
  --navy:          var(--brand-900);
  --navy-light:    var(--brand-600);
  --text-main:     var(--brand-900);
  --text-sub:      var(--brand-500);
  --bg-pale:       var(--brand-50);
  --border:        var(--brand-200);
  --border-light:  var(--brand-100);
}


/* ── §2 Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  font-weight: var(--fw-body);
  line-height: var(--leading-loose);
  color: var(--brand-900);
  background: var(--white);
  letter-spacing: 0.04em;
  word-break: auto-phrase;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

*, *::before, *::after {
  max-width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--dur-fast) ease;
}

a:hover { opacity: 0.7; }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

:focus:not(:focus-visible) { outline: none; }

::selection {
  background: var(--brand-600);
  color: var(--white);
}


/* ── §3 Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.lx-section {
  padding: var(--space-section) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}

.lx-section--full {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.lx-section--pale { background: var(--brand-50); }

/* Dark section — full-viewport-width bg via pseudo-element */
.lx-section--dark {
  position: relative;
  z-index: 0;
}
.lx-section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--brand-900);
  z-index: -1;
  pointer-events: none;
}
.lx-section--dark .lx-label            { color: var(--brand-300); }
.lx-section--dark .lx-h1,
.lx-section--dark .lx-h2,
.lx-section--dark .lx-h3              { color: var(--white); }
.lx-section--dark .lx-body,
.lx-section--dark .lx-body p          { color: var(--white); }
.lx-section--dark .lx-rule            { background: var(--brand-500); }
.lx-section--dark .statement-lines p  { color: var(--white); }
.lx-section--dark .statement-closing  { color: var(--white); }
.lx-section--dark .readmore-btn       { color: var(--brand-300); border-color: var(--brand-600); }

/* Section-dark: for full-width sections (blog, etc.) */
.section-dark {
  background: var(--brand-900) !important;
}
.section-dark .section-title h2    { color: var(--white); }
.section-dark .lx-label            { color: var(--brand-300); }
.section-dark .blog-more a         { color: var(--brand-300); }

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


/* ── §4 Typography ── */

/* Section Label */
.lx-label {
  display: block;
  font-family: var(--font-en);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: 0.25em;
  color: var(--brand-900);
  margin-bottom: clamp(20px, 4vw, 40px);
  text-transform: uppercase;
}

/* Headings */
.lx-h1 {
  font-family: var(--font-jp);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-wide);
  color: var(--brand-900);
  word-break: keep-all;
}

.lx-h2 {
  font-family: var(--font-jp);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: var(--tracking-wide);
  color: var(--brand-900);
  margin-top: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(44px, 8vw, 80px);
}

.lx-h3 {
  font-family: var(--font-jp);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--brand-900);
}

/* Body Text */
.lx-body {
  font-size: var(--fs-body);
  line-height: 2.1;
  max-width: 680px;
  color: var(--brand-900);
  letter-spacing: 0.04em;
}

.lx-body p + p { margin-top: 1.8em; }

/* Thin rule divider */
.lx-rule {
  width: 64px;
  height: 1.5px;
  background: var(--accent);
  margin: clamp(32px, 5vw, 56px) 0;
  border: none;
  opacity: 1;
  transform-origin: left center;
}

.lx-rule--center { margin-left: auto; margin-right: auto; }

/* Section divider line */
.section-divider {
  width: 100%;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto;
  opacity: 0.5;
}


/* ── §5 HEADER ── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5%;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all var(--dur-base) var(--ease-expo);
}

header.scrolled {
  padding: 14px 5%;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(46,61,73,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
  list-style: none;
}

nav ul li a {
  font-size: 0.68rem;
  font-weight: var(--fw-medium);
  color: var(--brand-900);
  opacity: 0.75;
  letter-spacing: 0.1em;
  transition: opacity var(--dur-fast) ease;
}

nav ul li a:hover { opacity: 1; }

.cta-btn {
  background: var(--brand-900);
  color: var(--white) !important;
  padding: 10px 22px;
  font-size: 0.68rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  transition: all var(--dur-fast) ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  opacity: 1 !important;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .cta-btn:hover {
    opacity: 0.85 !important;
    transform: translateY(-1px);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
  flex-shrink: 0;
  min-height: 44px;
  min-width: 44px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brand-900);
  transition: transform var(--dur-fast) ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46,61,73,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) ease;
  z-index: 1001;
}

.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Nav Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 82vw);
  height: 100dvh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-expo);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  padding: 72px 36px 48px;
  visibility: hidden;
}

.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

.nav-drawer ul li a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--brand-900);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--brand-900);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}


/* ── §6 HERO — Pattern A: Left/Right Split ── */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero__text {
  position: absolute;
  bottom: clamp(3rem, 8vw, 6rem);
  left: clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.2vw, 1rem);
}

.hero-sub {
  font-size: var(--fs-small);
  letter-spacing: var(--tracking-wider);
  color: var(--white);
  line-height: var(--leading-base);
}

.hero-main {
  font-family: var(--font-jp);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  letter-spacing: 0.12em;
  color: var(--white);
  word-break: keep-all;
  margin-top: clamp(4px, 1vw, 12px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--white);
  letter-spacing: 0.1em;
  margin-top: clamp(12px, 2vw, 24px);
  line-height: 2.0;
  font-weight: var(--fw-medium);
}

/* Hero Slideshow — images fill the right panel */
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slideshow img.slide-active { opacity: 1; }

.hero-scroll {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  align-self: flex-start;
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--brand-500);
  opacity: 0.4;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--brand-500);
  margin: 12px 0 0;
  opacity: 0.3;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.2; }
  50%       { transform: scaleY(1);   transform-origin: top; opacity: 0.5; }
}


/* ── §7 INTRODUCTION ── */
/* uses .lx-section, .lx-h2, .lx-body */


/* ── §8 BRAND STATEMENT ── */
.statement-lines {
  margin-top: 2em;
}

.statement-lines p {
  font-size: var(--fs-body);
  line-height: 2.1;
  color: var(--brand-900);
}

.statement-lines p + p { margin-top: 0.6em; }

.statement-closing {
  margin-top: 2.4em;
  font-weight: var(--fw-medium);
  color: var(--brand-900);
  font-size: clamp(0.88rem, 2.2vw, 1rem);
}


/* ── §9 METHOD ── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.method-card {
  border: 1px solid var(--brand-100);
  background: var(--white);
  overflow: hidden;
  border-radius: 8px;
  transition: transform var(--dur-base) var(--ease-expo),
              box-shadow var(--dur-base) ease;
}

@media (hover: hover) and (pointer: fine) {
  .method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(46,61,73,0.12);
  }

  .method-card:hover .method-card-img img {
    transform: scale(1.03);
  }
}

.method-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.method-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.method-card-header {
  background: var(--brand-600);
  padding: 14px 20px;
}

.method-card-header h4 {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  letter-spacing: 0.12em;
}

.method-card-header .jp {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}

.method-card-body {
  padding: 20px;
  background: var(--white);
}

.method-card-body p {
  font-size: var(--fs-small);
  line-height: 2.0;
  color: var(--brand-900);
}


/* ── §10 PROFILE ── */
.profile-grid {
  display: flex;
  gap: clamp(32px, 5vw, 56px);
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
}

.profile-photo {
  width: clamp(220px, 28vw, 320px);
  flex-shrink: 0;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(46,61,73,0.1);
}

.profile-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.profile-photo img.is-active { opacity: 1; }

.profile-text { flex: 1; }

.profile-text .name-en {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--brand-500);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.profile-text .name-jp {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--brand-900);
  margin-bottom: 28px;
  letter-spacing: var(--tracking-wide);
}

.profile-text .credentials {
  font-size: 0.78rem;
  color: var(--brand-500);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: var(--leading-base);
}

.profile-text .experience,
.profile-text .bio {
  font-size: 0.84rem;
  color: var(--brand-900);
  line-height: 2.1;
  margin-bottom: 24px;
}

.profile-text .experience strong {
  color: var(--brand-900);
  font-weight: 600;
}

.profile-text .cert {
  font-size: 0.75rem;
  color: var(--brand-500);
  line-height: 1.9;
  border-top: 1px solid var(--brand-100);
  padding-top: 20px;
  margin-top: 8px;
}


/* ── §11 EXPERIENCE FLOW (SOAP) ── */
.flow-section {
  padding: var(--space-section) 5%;
  background: var(--white);
}

.section-heading-bar {
  background: var(--brand-600);
  color: var(--white);
  text-align: center;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide);
  max-width: 900px;
  margin: 0 auto 44px;
}

.soap-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--brand-200);
}

.soap-row:last-child { border-bottom: none; }

.soap-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 160px;
}

/* ── Pattern D: Flow Timeline ── */
.flow-timeline {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 0;
  max-width: 760px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.flow-arrow {
  grid-column: 2;
  grid-row: 1 / 4;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.flow-arrow__path {
  stroke: var(--brand-300);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.flow-step__number {
  font-family: var(--font-en);
  font-size: var(--fs-h3);
  letter-spacing: 0.05em;
  padding-top: 1.5rem;
  text-align: center;
}

.flow-timeline .flow-step__number { color: var(--brand-800); }

.flow-step__content {
  padding: 1.5rem 0 clamp(3rem, 6vw, 5rem) 2.5rem;
  border-bottom: 1px solid var(--brand-100);
}

.flow-timeline > .flow-step__content:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.flow-step__title {
  font-family: var(--font-jp);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
}

.flow-timeline .flow-step__title { color: var(--black); }

.flow-step__desc {
  font-size: var(--fs-body);
  color: var(--brand-500);
  line-height: 2.0;
  margin-top: 0.75rem;
  max-width: 560px;
}


/* ── §12 PHILOSOPHY ── */
/* uses .lx-section, .lx-h2, .lx-body */


/* ── §13 PRICE ── */
.training-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--brand-100);
  padding: 18px 0;
}

.training-label {
  min-width: 110px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--brand-600);
  text-align: center;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.training-price { flex: 1; padding-left: 20px; }

.training-price .main-price {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--brand-900);
  letter-spacing: 0.04em;
}

.training-price .main-price .prefix {
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  color: var(--brand-500);
  margin-right: 4px;
}

.training-price .sub-price {
  font-size: 0.75rem;
  color: var(--brand-500);
  margin-top: 2px;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.option-box {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--brand-100);
}

.payment-info {
  text-align: center;
  font-size: 0.82rem;
  color: var(--brand-900);
}

.payment-info .badge {
  display: inline-block;
  background: var(--brand-600);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  margin-right: 10px;
}

/* §13b: price CSS moved to end of file for priority */

/* ── §14 BLOG ── */

/* Pattern B: Section Title (English large + Japanese small + border) */
.section-title {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--brand-200);
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.section-title__en {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: var(--font-en);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  color: var(--brand-900);
  line-height: 1;
}

.section-title__ja {
  font-size: var(--fs-body);
  color: var(--brand-600);
  letter-spacing: 0.1em;
}

/* Dark section overrides */
.lx-section--dark .section-title { border-bottom-color: var(--brand-600); }
.lx-section--dark .section-title__en { color: var(--white); }
.lx-section--dark .section-title__ja { color: var(--brand-300); }

/* Dark full-width section (blog) overrides */
.section-dark .section-title { border-bottom-color: var(--brand-700); }
.section-dark .section-title__en { color: var(--white); }
.section-dark .section-title__ja { color: var(--brand-400); }

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

.blog-card {
  border: 1px solid var(--brand-100);
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast) ease;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(46,61,73,0.07);
  }
}

.blog-card-body { padding: 20px; }

.blog-card-tag {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  color: var(--brand-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1.7;
  margin-top: 8px;
}

.blog-card-date {
  font-family: var(--font-en);
  font-size: 0.65rem;
  color: var(--brand-500);
  margin-top: 10px;
  letter-spacing: 0.06em;
}

.blog-more {
  text-align: center;
  margin-top: 40px;
}

.blog-more a {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--brand-900);
  letter-spacing: var(--tracking-wider);
  opacity: 0.6;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}


/* ── §15 VOICE ── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.voice-card {
  background: var(--white);
  border: 1px solid var(--brand-100);
  border-radius: 12px;
  padding: 32px 28px 28px;
  box-shadow: 0 2px 16px rgba(46,61,73,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(46,61,73,0.1);
  }
}

.voice-quote {
  font-size: 1.5rem;
  color: var(--brand-500);
  opacity: 0.25;
  line-height: 1;
  font-family: var(--font-en);
}

.voice-text {
  font-size: 0.88rem;
  line-height: 2.0;
  color: var(--brand-900);
  flex: 1;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--brand-100);
  padding-top: 20px;
}

.voice-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-50);
  border: 2px solid var(--brand-100);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.6rem;
  color: var(--brand-500);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

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

.voice-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1.4;
}

.voice-meta {
  font-size: 0.7rem;
  color: var(--brand-500);
  margin-top: 3px;
  letter-spacing: 0.04em;
}


/* ── §16 FAQ ── */
.faq-section {
  padding: var(--space-section) 5%;
  background: var(--brand-50);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}

.faq-item {
  background: var(--white);
  border-left: 2px solid transparent;
  transition: border-color var(--dur-fast) ease;
}

.faq-item.is-open { border-left-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--brand-900);
  letter-spacing: 0.06em;
  line-height: var(--leading-base);
  min-height: 44px;
  transition: background var(--dur-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover { background: rgba(46,61,73,0.03); }
}

.faq-q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-900);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question-text { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--brand-500);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-expo), opacity 0.25s ease;
}

.faq-icon::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after  { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

.faq-item.is-open .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-expo);
}

.faq-answer {
  padding: 0 28px 24px calc(28px + 18px + 18px);
  font-size: var(--fs-small);
  color: var(--brand-500);
  line-height: 2.0;
  letter-spacing: 0.05em;
}

.faq-a-mark {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.70rem;
  font-weight: var(--fw-bold);
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-right: 10px;
}

.faq-category-label {
  padding: 28px 0 10px;
  font-family: var(--font-jp);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  color: var(--brand-500);
  letter-spacing: 0.18em;
  border-bottom: 1px solid var(--brand-100);
  margin-bottom: 2px;
}

.faq-category-label:first-child { padding-top: 0; }


/* ── §17 CONTACT ── */
.contact-section {
  padding: var(--space-section) 5%;
  background: var(--brand-50);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-900);
  margin-bottom: 6px;
}

.contact-form label .required {
  color: #c0392b;
  font-size: 0.7rem;
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.85rem;
  font-family: var(--font-jp);
  border: 1px solid var(--brand-200);
  background: var(--white);
  color: var(--brand-900);
  outline: none;
  transition: border-color var(--dur-fast) ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--brand-600); }

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .form-group { margin-bottom: 24px; }

.contact-form .submit-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 44px auto 0;
  padding: 16px;
  background: var(--brand-900);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  font-family: var(--font-jp);
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  min-height: 44px;
  transition: all var(--dur-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-form .submit-btn:hover { opacity: 0.85; transform: translateY(-1px); }
}

.contact-form .form-note {
  font-size: 0.7rem;
  color: var(--brand-500);
  text-align: center;
  margin-top: 16px;
}

.contact-success { display: none; text-align: center; padding: 40px 20px; }
.contact-success.show { display: block; }
.contact-success p { font-size: 0.9rem; color: var(--brand-900); line-height: 1.8; }


/* ── §17b CARD OVERLAY (shared — used by method-grid) ── */

.approach-card {
  position: relative;
  aspect-ratio: 3 / 5;
  overflow: hidden;
}

.approach-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-expo);
}

.approach-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
}

.approach-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.approach-card__num {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,1.0);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.approach-card__title {
  font-family: var(--font-jp);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.approach-card__jp {
  font-family: var(--font-jp);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,1.0);
  margin-bottom: 0.4rem;
}

.approach-card__desc {
  font-size: var(--fs-small);
  line-height: 1.8;
  color: rgba(255,255,255,0.95);
}

@media (hover: hover) and (pointer: fine) {
  .approach-card:hover .approach-card__image { transform: scale(1.04); }
}


/* ── §17c METHOD EXTRAS ── */

.method-subtitle {
  font-size: var(--fs-h3);
  letter-spacing: 0.15em;
  color: var(--brand-800);
  text-align: center;
  margin: 0.75rem 0 clamp(1rem, 2vw, 1.5rem);
}

.method-grid-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.method-line-bar {
  position: relative;
  height: 8px;
  margin-bottom: 0;
}

.method-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  overflow: visible;
}

.method-line__shaft {
  stroke: var(--brand-300);
  stroke-width: 1;
  fill: none;
}

.method-line__dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-600);
  opacity: 0;
}

.method-line__dot:nth-child(2) { left: 12.5%; }
.method-line__dot:nth-child(3) { left: 37.5%; }
.method-line__dot:nth-child(4) { left: 62.5%; }
.method-line__dot:nth-child(5) { left: 87.5%; }

.method-card__label {
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.method-grid .approach-card__title {
  font-family: var(--font-en);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,1.0);
  margin-bottom: 0;
}

.method-grid .approach-card__jp {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,1.0);
  margin-bottom: 0;
}

/* Vertical line — SP only (hidden on desktop) */
.method-vline-bar { display: none; }


/* ── §18 FOOTER ── */
footer {
  padding: clamp(60px, 8vw, 100px) 5% 40px;
  text-align: center;
  background: var(--brand-900);
  color: rgba(255,255,255,0.7);
}

footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

footer .footer-nav a {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast) ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

footer .footer-nav a:hover {
  color: rgba(255,255,255,0.9);
  opacity: 1;
}

.footer-logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  max-width: 240px;
  width: 60%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}

.copyright {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: inline-block;
  width: 100%;
  max-width: 200px;
}


/* ── §18b FOOTER Pattern F ── */
footer.site-footer {
  padding: 0;
  text-align: left;
  background: none;
  color: var(--white);
}

.site-footer {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
  z-index: 1;
}

.site-footer__content {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 8rem) clamp(2rem, 6vw, 5rem);
  min-height: 70svh;
  display: flex;
  flex-direction: column;
}

.site-footer__logo {
  max-width: 220px;
  width: 50%;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.38);
  margin-top: 1rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 clamp(3rem, 8vw, 6rem);
  justify-content: start;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.site-footer__nav a {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  padding: 0.45rem 0;
  display: block;
  transition: color var(--dur-fast) ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__nav a:hover { color: var(--white); }
}

.site-footer__copyright {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  margin-top: auto;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255,255,255,0.1);
}


/* ── §19 READ MORE ── */
.readmore-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo), opacity 0.4s ease;
  opacity: 0;
}

.readmore-wrap.is-open { opacity: 1; }

.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 3vw, 32px);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand-900);
  opacity: 0.6;
  transition: opacity var(--dur-fast) ease;
  min-height: 44px;
}

.readmore-btn:hover { opacity: 1; }

.readmore-btn::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--brand-900);
  transition: width var(--dur-fast) ease;
}

.readmore-btn:hover::after { width: 32px; }
.readmore-btn.is-open::after { width: 12px; }


/* ── §20 ANIMATION SYSTEM ── */

/* Reveal: blur + slide-up (CSS fallback / GSAP initial state) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity var(--dur-slow) var(--ease-expo),
              transform var(--dur-slow) var(--ease-expo),
              filter var(--dur-slow) var(--ease-expo);
  will-change: opacity, transform, filter;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity var(--dur-base) var(--ease-expo),
              transform var(--dur-base) var(--ease-expo),
              filter var(--dur-base) var(--ease-expo);
  will-change: opacity, transform, filter;
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; opacity:1; transform:translateY(0); filter:blur(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; opacity:1; transform:translateY(0); filter:blur(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; opacity:1; transform:translateY(0); filter:blur(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; opacity:1; transform:translateY(0); filter:blur(0); }

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  filter: blur(4px);
  transition: opacity 1.0s var(--ease-expo),
              transform 1.0s var(--ease-expo),
              filter 1.0s var(--ease-expo);
}

.reveal-left.active { opacity:1; transform:translateX(0); filter:blur(0); }

/* Reveal from right */
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  filter: blur(4px);
  transition: opacity 1.0s var(--ease-expo),
              transform 1.0s var(--ease-expo),
              filter 1.0s var(--ease-expo);
}

.reveal-right.active { opacity:1; transform:translateX(0); filter:blur(0); }

/* lx-rule draw-in */
.lx-rule {
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease-expo),
              opacity var(--dur-base) ease;
}


/* ── §21 RESPONSIVE (Mobile First) ── */
.br-sp { display: none; }

@media (max-width: 1023px) {
  nav > ul,
  nav > ul ~ .cta-btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .br-sp { display: inline; }
  .br-md { display: none; }

  /* Hero: single column on mobile */
  .hero__text {
    left: clamp(1.25rem, 5vw, 2.5rem);
    bottom: clamp(2.5rem, 7vw, 4rem);
    padding-right: 1.5rem;
  }
  .hero-main {
    font-size: clamp(1.5rem, 6vw, 2rem);
    word-break: keep-all;
  }

  .profile-grid { flex-direction: column; align-items: center; gap: 40px; }
  .profile-photo { width: clamp(200px, 60vw, 280px); }
  .profile-text { text-align: left; }
  .profile-text .name-en,
  .profile-text .name-jp { text-align: center; }

  .lx-h2 { text-align: center; font-size: clamp(1.2rem, 3.5vw, 2.0rem); }
  .lx-h1 { font-size: clamp(1.4rem, 4vw, 2.4rem); }
  .lx-label { text-align: center; }
  .lx-body { font-size: clamp(0.84rem, 2.6vw, 0.96rem); }
  .hero-lead { font-size: clamp(0.88rem, 2.4vw, 1.05rem); }

  .section-title { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .section-title__ja { font-size: var(--fs-small); }

  .method-grid { grid-template-columns: 1fr; }
  .method-grid-wrap { position: relative; max-width: 420px; margin-left: auto; margin-right: auto; padding-left: 24px; }
  .method-line-bar { display: none; }
  .method-vline-bar { display: block; position: absolute; left: 0; top: 0; bottom: 0; width: 20px; }
  .method-vline { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; overflow: visible; }
  .method-vline__shaft { stroke: var(--brand-300); stroke-width: 1; fill: none; }
  .method-vline__dot { position: absolute; left: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: var(--brand-600); opacity: 0; }
  .method-vline__dot:nth-child(2) { top: 12.5%; }
  .method-vline__dot:nth-child(3) { top: 37.5%; }
  .method-vline__dot:nth-child(4) { top: 62.5%; }
  .method-vline__dot:nth-child(5) { top: 87.5%; }
  .flow-timeline { position: relative; grid-template-columns: 24px 1fr; }
  .flow-arrow { display: none; }
  .flow-step__number { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.9); border-radius: 2px; padding-left: 0; }
  .flow-timeline > .flow-step__content { padding-left: 40px; }
  .flow-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    width: 2px;
    height: 0;
    background: #586b7a;
    animation: flowLineGrow 5s cubic-bezier(0.16,1,0.3,1) forwards;
  }
  .flow-timeline::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #586b7a;
  }
  @keyframes flowLineGrow {
    to { height: 100%; }
  }

  .blog-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .voice-grid { grid-template-columns: 1fr; gap: 20px; }
  .voice-card { padding: 24px 20px 20px; }

  .faq-question { padding: 18px 20px; }
  .faq-answer { padding: 0 20px 20px 20px; }

  .footer-logo img { max-width: 180px; }
  footer .footer-nav { gap: 14px; }

  .approach-card { aspect-ratio: 16 / 10; }
  .site-footer__nav { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 600px) {
  .soap-row { flex-direction: column !important; gap: 8px !important; }
  .soap-left { min-width: auto !important; }
  .option-grid { grid-template-columns: 1fr !important; }
  nav ul { gap: 10px; }
  nav ul li a { font-size: 0.6rem; }
  .cta-btn { padding: 8px 14px; font-size: 0.6rem; }
  .logo img { height: 44px; }
}

@media (max-width: 480px) {
  .training-price .main-price { font-size: 1.2rem; }
  .training-label { min-width: 90px; padding: 6px 12px; font-size: 0.75rem; }
  .hero-main { letter-spacing: 0.06em; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid-wrap { max-width: 360px; margin-left: auto; margin-right: auto; }
  .flow-timeline { grid-template-columns: 24px 1fr; }
}


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

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-scroll::after { animation: none; }

  .method-card:hover,
  .blog-card:hover,
  .voice-card:hover { transform: none; }
}


/* ── §23 Print ── */
@media print {
  header, .hero-scroll, .hamburger, .nav-drawer, .nav-overlay { display: none; }
  body { color: #000; background: #fff; }
  .lx-section { padding-block: 40px; }
}


/* ── §24 Sub-pages ── */

/* Page Hero */
.page-hero {
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: var(--space-section);
  padding-inline: var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero-label {
  font-family: var(--font-en);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: 0.25em;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-bottom: clamp(16px, 3vw, 28px);
  display: block;
}

.page-hero-h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-wide);
  color: var(--brand-900);
  word-break: keep-all;
}

/* CTA link button */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  color: var(--white);
  background: var(--brand-900);
  border: 1px solid var(--brand-900);
  min-height: 44px;
  transition: all var(--dur-fast) var(--ease-expo);
}

@media (hover: hover) and (pointer: fine) {
  .cta-link:hover {
    background: transparent;
    color: var(--brand-900);
    opacity: 1;
  }
}

/* Sub-page section */
.sub-section {
  padding: var(--space-section) var(--gutter);
  max-width: 1100px;
  margin: 0 auto;
}

.sub-section--full {
  max-width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.sub-section--pale { background: var(--brand-50); }

.sub-section-label {
  font-family: var(--font-en);
  font-size: var(--fs-label);
  font-weight: var(--fw-medium);
  letter-spacing: 0.25em;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-bottom: clamp(12px, 2vw, 20px);
  display: block;
}

.sub-section-h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-wide);
  color: var(--brand-900);
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* Journal page */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: clamp(40px, 6vw, 64px);
}

.journal-card {
  background: var(--white);
  border: 1px solid var(--brand-100);
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(46,61,73,0.1);
    opacity: 1;
  }
}

.journal-card-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.journal-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

@media (hover: hover) and (pointer: fine) {
  .journal-card:hover .journal-card-img img { transform: scale(1.03); }
}

.journal-card-body { padding: 24px; }

.journal-card-category {
  font-family: var(--font-en);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  color: var(--brand-500);
  text-transform: uppercase;
}

.journal-card-date {
  font-family: var(--font-en);
  font-size: 0.6rem;
  color: var(--brand-400);
  letter-spacing: 0.06em;
  margin-left: 12px;
}

.journal-card-title {
  font-size: clamp(0.82rem, 2vw, 0.94rem);
  font-weight: 600;
  color: var(--brand-900);
  line-height: 1.75;
  margin-top: 12px;
}

/* Journal Modal */
.journal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,20,30,0.75);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}

.journal-modal.is-open { display: flex; }

.journal-modal-inner {
  background: var(--white);
  width: 100%;
  max-width: 720px;
  margin: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
  position: relative;
}

.journal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  min-width: 44px;
  min-height: 44px;
}

.journal-modal-header {
  padding: clamp(40px, 8vw, 72px) clamp(24px, 5vw, 48px) clamp(28px, 5vw, 40px);
  background: var(--brand-900);
}

.journal-modal-body {
  padding: clamp(32px, 5vw, 48px) clamp(24px, 5vw, 48px) 56px;
  color: var(--brand-900);
  line-height: var(--leading-loose);
}

.journal-modal-body p { margin-bottom: 1.5em; font-size: var(--fs-body); }

.journal-modal-body h2 {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin: 2.4em 0 0.8em;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.journal-modal-summary {
  background: var(--brand-50);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 2em;
}

.journal-modal-summary-label {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.2em;
  color: var(--brand-600);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.journal-modal-summary ul {
  list-style: disc;
  padding-left: 20px;
  font-size: var(--fs-small);
  line-height: 2.0;
  color: var(--brand-900);
}

/* SOAP grid (sub-pages) */
.soap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(36px, 6vw, 60px);
}

.soap-card {
  border: 1px solid var(--brand-100);
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  background: var(--white);
  border-radius: 4px;
}

.soap-letter {
  font-family: var(--font-en);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: var(--fw-bold);
  color: var(--brand-200);
  line-height: 1;
  margin-bottom: 12px;
}

.soap-card-title {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  color: var(--brand-600);
  margin-bottom: 8px;
}

.soap-card-sub {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--brand-900);
  margin-bottom: 8px;
}

.soap-card-desc {
  font-size: var(--fs-small);
  color: var(--brand-500);
  line-height: 1.85;
}

/* Price cards (sub-pages) */
.price-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(36px, 6vw, 60px);
}

.price-card {
  border: 1px solid var(--brand-100);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px);
  background: var(--white);
  text-align: center;
  border-radius: 4px;
  transition: transform var(--dur-fast) var(--ease-expo),
              box-shadow var(--dur-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(46,61,73,0.1);
  }
}

.price-card-name {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  color: var(--brand-500);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-card-price {
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: var(--fw-bold);
  color: var(--brand-900);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.price-card-detail {
  font-size: var(--fs-small);
  color: var(--brand-500);
  margin-bottom: 4px;
}

.price-card-duration {
  font-size: var(--fs-small);
  color: var(--brand-400);
}

/* Options list */
.price-options {
  max-width: 600px;
  margin-top: clamp(36px, 6vw, 60px);
}

.price-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--brand-100);
  font-size: var(--fs-small);
}

.price-option-name { color: var(--brand-900); }
.price-option-price { color: var(--brand-900); font-weight: 600; }

/* Flow steps (program page) */
.flow-steps {
  max-width: 560px;
  margin: clamp(40px, 6vw, 64px) auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--brand-100);
}

.flow-step:last-child { border-bottom: none; }

.flow-step-num {
  font-family: var(--font-en);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--brand-200);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.flow-step-name {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--brand-900);
  letter-spacing: 0.06em;
}

/* Contact sub-page */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.contact-intro {
  font-size: var(--fs-body);
  line-height: var(--leading-loose);
  color: var(--brand-500);
  margin-bottom: clamp(36px, 6vw, 60px);
}

/* Responsive sub-pages */
@media (max-width: 768px) {
  .journal-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .soap-grid { grid-template-columns: repeat(2, 1fr); }
  .price-plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .soap-grid { grid-template-columns: 1fr; }
  .price-plans { grid-template-columns: 1fr; }
}

/* lx-h2 mobile override for sub-pages */
@media (max-width: 768px) {
  .sub-section-h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
}

/* ══════════════════════════════════════════════
   §PRICE — high-specificity block (end of file)
   ══════════════════════════════════════════════ */

#price .price-group {
  border: 1px solid #d3d9de;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  position: relative;
}

#price .price-group--full {
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1px;
}

#price .price-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d3d9de;
}

#price .price-group--recommended {
  border: 2px solid #586b7a;
  background: #f5f7f8;
}

#price .price-badge {
  display: inline-block;
  background: #586b7a;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.75rem;
  margin-bottom: 1rem;
}

#price .price-group__label {
  display: block;
  font-size: 0.82rem;
  color: #586b7a;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #ebeef0;
  padding-bottom: 0.5rem;
}

#price .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ebeef0;
}

#price .price-row__name {
  font-size: 0.95rem;
  color: #1a2a3a;
}

#price .price-row__amount {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1a2a3a;
  white-space: nowrap;
}

#price .price-row__sub {
  font-size: 0.82rem;
  color: #6b7d8b;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

#price .price-desc {
  font-size: 0.82rem;
  color: #6b7d8b;
  line-height: 1.7;
  margin-top: 0.75rem;
}

#price .price-divider {
  height: 1px;
  background: #ebeef0;
  margin: 1rem 0;
}

#price .price-note {
  font-size: 0.82rem;
  color: #8a9aa6;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  #price .price-columns { grid-template-columns: 1fr; }
}
