:root {
  --ivory: #EFE5D0;
  --ivory-2: #E5DAC0;
  --navy: #1A4669;
  --navy-2: #245580;
  --ink: #1A4669;
  --bronze: #C77F40;
  --bronze-dark: #9D6432;
  --muted: #5C5448;
  --line: #C2B89F;
  --line-soft: #D5CBB0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(199, 127, 64, 0.03) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(26, 70, 105, 0.025) 0, transparent 50%);
  mix-blend-mode: multiply;
}

.serif-en { font-family: "Cormorant Garamond", "Marcellus", serif; font-weight: 400; letter-spacing: 0.02em; }
.serif-jp { font-family: "Noto Serif JP", serif; }

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

/* ============ FLOATING WIDGETS ============ */
.float-stack {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 22px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(26, 24, 20, 0.22);
  transition: all 0.3s ease;
  min-width: 240px;
  text-align: left;
}
.float-widget:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26, 24, 20, 0.3);
}

/* Primary: 無料相談 — bronze background for max attention */
.float-primary {
  background: var(--bronze);
  color: var(--ivory);
  border-left: 3px solid var(--navy);
}
.float-primary .fw-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1;
  opacity: 0.85;
}
.float-primary .fw-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.float-primary .fw-sub {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 232, 0.9);
  line-height: 1;
}

/* Secondary: 補助金診断 — ivory/cream background for contrast */
.float-secondary {
  background: var(--ivory);
  color: var(--navy);
  border-left: 3px solid var(--bronze);
}
.float-secondary .fw-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--bronze);
  margin-bottom: 6px;
  line-height: 1;
}
.float-secondary .fw-title {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin-bottom: 4px;
}
.float-secondary .fw-sub {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1;
  transition: color 0.3s ease;
}
.float-secondary:hover .fw-sub {
  color: var(--bronze);
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(239, 229, 208, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
header.scrolled { border-bottom-color: var(--line-soft); }

.logo {
  font-family: "Marcellus", serif;
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--navy);
}
.logo .dot { color: var(--bronze); }

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
nav ul a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
nav ul a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--bronze);
  transition: width 0.4s ease;
}
nav ul a:hover::after { width: 100%; }
nav .nav-full { display: inline; }
nav .nav-short { display: none; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.12em;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-button:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}
.cta-button .arrow { transition: transform 0.3s ease; }
.cta-button:hover .arrow { transform: translateX(4px); }

.cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.12em;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
  cursor: pointer;
}
.cta-outline:hover {
  background: var(--navy);
  color: var(--ivory);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 160px 64px 100px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  top: 120px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199, 127, 64, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 32px;
  padding-left: 60px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}
.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 44px; height: 1px;
  background: var(--bronze);
}

.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(30px, 5.6vw, 60px);
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.4s forwards;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero h1 .accent {
  color: var(--bronze);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.08em;
}
.hero h1 .br-thin {
  display: block;
  margin-top: 0.1em;
}

.hero-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.8s forwards;
}

.hero-actions .meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.hero-actions .meta::before {
  content: "—";
  color: var(--bronze);
}

/* Hero right: vertical pattern card */
.hero-visual {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.8s forwards;
}

.hero-card {
  background: var(--navy);
  color: var(--ivory);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(239, 229, 208, 0.12);
  pointer-events: none;
}
.hero-card-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--bronze);
  margin-bottom: 32px;
}
.hero-card-title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-card-divider {
  width: 32px;
  height: 1px;
  background: var(--bronze);
  margin: 32px 0;
}
.hero-card ul {
  list-style: none;
}
.hero-card ul li {
  font-size: 13.5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(239, 229, 208, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.04em;
}
.hero-card ul li:last-child { border-bottom: none; }
.hero-card ul li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--bronze);
  flex-shrink: 0;
}
.hero-card-num {
  position: absolute;
  bottom: 24px; right: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 80px;
  font-style: italic;
  color: rgba(239, 229, 208, 0.22);
  line-height: 1;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 64px;
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.scroll-hint::after {
  content: "";
  width: 60px; height: 1px;
  background: var(--muted);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============ SECTION GENERAL ============ */
section { position: relative; z-index: 2; }

.section-padding {
  padding: 140px 64px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 800px;
}
.section-num {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 20px;
  display: inline-block;
}
.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.5;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.section-title .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.55em;
  color: var(--bronze);
  margin-top: 12px;
  letter-spacing: 0.08em;
}
.section-lead {
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink);
  max-width: 640px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ============ PHASES ============ */
.phases {
  background: var(--ivory-2);
  padding: 140px 64px;
  position: relative;
}
.phases::before {
  content: "PHASES";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

.lead-highlight {
  color: var(--bronze);
  font-weight: 600;
  border-bottom: 2px solid var(--bronze);
  padding-bottom: 2px;
}
.phases .section-lead {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: loose;
}

/* Phase timeline indicator */
.phase-timeline {
  max-width: 900px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 2;
  padding: 32px 16px 28px;
}

.timeline-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 18px;
  min-width: 132px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  transition: all 0.3s ease;
}
.timeline-step.is-core {
  background: var(--navy);
  border-color: var(--bronze);
  box-shadow: 0 4px 14px rgba(26, 24, 20, 0.12);
}
.timeline-step .step-roman {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 30px;
  color: var(--bronze);
  line-height: 1;
}
.timeline-step.is-core .step-roman { color: var(--bronze); }
.timeline-step .step-name {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.timeline-step.is-core .step-name { color: var(--ivory); }

.timeline-connector {
  flex: 0 0 32px;
  height: 1px;
  background: var(--line-soft);
  position: relative;
  top: 0;
}
.timeline-connector.is-core {
  height: 3px;
  background: var(--bronze);
}

.timeline-bracket {
  margin-top: 20px;
  text-align: center;
}
.bracket-label {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  padding: 6px 18px;
  border-top: 2px solid var(--bronze);
}

/* Core phases grid (II, III, IV) */
.phase-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.phase-card {
  background: var(--ivory);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phase-card:hover {
  transform: translateY(-3px);
}
.phase-card.is-core {
  border-top: 3px solid var(--bronze);
  box-shadow: 0 6px 20px rgba(26, 24, 20, 0.08);
}
.phase-card.is-core:hover {
  box-shadow: 0 12px 32px rgba(26, 24, 20, 0.15);
}

.phase-card-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.phase-roman {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--bronze);
  font-weight: 400;
  line-height: 1;
}
.phase-en {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.phase-name {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.phase-range {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  font-style: italic;
  font-family: "Noto Serif JP", serif;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line-soft);
}

.phase-situations {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.phase-situations li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink);
  padding: 6px 0 6px 22px;
  position: relative;
  letter-spacing: 0.02em;
  word-break: keep-all;
}
.phase-situations li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 500;
}

.phase-need {
  padding: 16px 18px;
  background: rgba(199, 127, 64, 0.08);
  border-left: 2px solid var(--bronze);
}
.need-label {
  font-family: "Marcellus", serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  display: block;
  margin-bottom: 6px;
}
.phase-need p {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.9;
  color: var(--navy);
  letter-spacing: 0.02em;
  word-break: keep-all;
}

/* Secondary phases label */
.phase-secondary-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Secondary phases grid (I, V) */
.phase-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.phase-card.is-secondary {
  background: rgba(245, 241, 232, 0.6);
  border-top: 1px solid var(--line-soft);
  padding: 28px 26px;
}
.phase-card.is-secondary .phase-name {
  font-size: 20px;
  color: var(--muted);
}
.phase-card.is-secondary .phase-roman { font-size: 30px; opacity: 0.7; }
.phase-card.is-secondary .phase-situations li { font-size: 13px; }
.phase-card.is-secondary .phase-range { padding-bottom: 14px; margin-bottom: 18px; }

.phases-conclusion {
  margin-top: 24px;
  padding: 36px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.phases-conclusion p {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.phases-conclusion .underline-bronze {
  text-decoration: underline;
  text-decoration-color: var(--bronze);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* ============ STRENGTHS ============ */
.strengths {
  padding: 140px 64px;
  background: var(--ivory);
}

.strength-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 120px;
  align-items: start;
}
.strength-block:last-child { margin-bottom: 0; }
.strength-block.reverse {
  grid-template-columns: 1.2fr 1fr;
}
.strength-block.reverse .strength-visual { order: 2; }

.strength-visual {
  background: var(--navy);
  color: var(--ivory);
  padding: 56px 48px;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.strength-visual.bronze {
  background: var(--bronze);
}

/* Photo background mode */
.strength-visual.has-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.visual-overlay.overlay-navy {
  background: linear-gradient(135deg, rgba(26, 70, 105, 0.93) 0%, rgba(36, 85, 128, 0.78) 100%);
}
.visual-overlay.overlay-bronze {
  background: linear-gradient(135deg, rgba(199, 127, 64, 0.92) 0%, rgba(157, 100, 50, 0.78) 100%);
}
.strength-visual.has-photo > .visual-content,
.strength-visual.has-photo > .strength-vis-title {
  position: relative;
  z-index: 2;
}
.visual-content {
  display: flex;
  flex-direction: column;
}

.strength-visual.bronze .strength-vis-num,
.strength-visual.bronze .strength-vis-title { color: var(--ivory); }
.strength-visual.bronze .strength-vis-en { color: var(--navy); opacity: 0.5; }
.strength-visual.has-photo.bronze .strength-vis-en { color: rgba(239, 229, 208, 0.7); opacity: 1; }

.strength-vis-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 100px;
  color: var(--bronze);
  line-height: 1;
}
.strength-vis-en {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(239, 229, 208, 0.5);
}
.strength-vis-title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ivory);
  margin-top: 32px;
}

.strength-content {
  padding-top: 16px;
}
.strength-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--bronze);
  margin-bottom: 16px;
}
.strength-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.strength-content p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.strength-content .note {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--bronze);
  background: var(--ivory-2);
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}

/* ============ SERVICES ============ */
.services {
  background: var(--navy);
  color: var(--ivory);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}
.services .section-title { color: var(--ivory); }
.services .section-num,
.services .section-title .en { color: var(--bronze); }
.services .section-lead { color: rgba(239, 229, 208, 0.75); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(239, 229, 208, 0.1);
  border: 1px solid rgba(239, 229, 208, 0.1);
  margin-top: 60px;
}
.service-item {
  background: var(--navy);
  padding: 48px 40px;
  transition: background 0.4s ease;
  position: relative;
}
.service-item:hover { background: var(--navy-2); }
.service-tag {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bronze);
}
.service-item h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--ivory);
}
.service-item p {
  font-size: 14px;
  line-height: 2;
  color: rgba(239, 229, 208, 0.7);
}

/* New: Cycle flow */
.cycle-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 64px 0 56px;
  border-top: 1px solid rgba(239, 229, 208, 0.18);
  border-bottom: 1px solid rgba(239, 229, 208, 0.18);
  position: relative;
}
.cycle-step {
  padding: 32px 16px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(239, 229, 208, 0.1);
}
.cycle-step:last-child { border-right: none; }
.cycle-step::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Marcellus", serif;
  font-size: 18px;
  color: var(--bronze);
  background: var(--navy);
  padding: 4px 6px;
  z-index: 2;
  line-height: 1;
}
.cycle-step:last-child::after { display: none; }
.cycle-roman {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: var(--bronze);
  margin-bottom: 12px;
  line-height: 1;
}
.cycle-en {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: rgba(239, 229, 208, 0.7);
  margin-bottom: 8px;
}
.cycle-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: var(--ivory);
  letter-spacing: 0.08em;
}

/* New: Service list (5 cards, 3+2 layout) */
.service-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(239, 229, 208, 0.1);
  border: 1px solid rgba(239, 229, 208, 0.1);
}
.service-card {
  background: var(--navy);
  padding: 44px 36px;
  transition: background 0.4s ease;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
}
.service-card:nth-child(4),
.service-card:nth-child(5) { grid-column: span 3; }
.service-card:hover { background: var(--navy-2); }

.service-phase {
  display: inline-block;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 16px;
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 64px;
  color: rgba(239, 229, 208, 0.32);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.service-headline {
  font-family: "Noto Serif JP", serif;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.service-body {
  font-size: 15.5px;
  line-height: 2;
  color: rgba(239, 229, 208, 0.78);
}

/* ============ FOUNDERS (2-person) ============ */
.founders-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
}

.founder-card {
  background: var(--ivory);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.founder-portrait {
  width: 100%;
  aspect-ratio: 5/2;
  position: relative;
  overflow: hidden;
}
.portrait-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.portrait-navy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(199, 127, 64, 0.45), transparent 60%),
    radial-gradient(ellipse at 75% 80%, rgba(199, 127, 64, 0.18), transparent 60%);
}
.portrait-bronze {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-dark) 100%);
}
.portrait-bronze::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(239, 229, 208, 0.25), transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(26, 70, 105, 0.2), transparent 60%);
}
.portrait-kanji-vertical {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
}
.kanji-char {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(64px, 10vw, 116px);
  line-height: 1;
  color: rgba(239, 229, 208, 0.95);
  letter-spacing: 0;
}
.portrait-tag {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(239, 229, 208, 0.7);
  z-index: 2;
}

.founder-meta {
  padding: 32px 32px 20px;
  border-bottom: 1px solid var(--line-soft);
}
.founder-role-en {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--bronze);
  margin-bottom: 12px;
}
.founder-name {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.founder-name .reading {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 10px;
  letter-spacing: 0.12em;
}
.founder-title {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.founder-bio {
  padding: 28px 32px 24px;
  flex: 1;
}
.founder-bio p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 16px;
}
.founder-bio p:last-child { margin-bottom: 0; }

/* Accreditation badge */
.accreditation {
  margin: 0 32px;
  padding: 18px 22px;
  background: rgba(199, 127, 64, 0.08);
  border-left: 3px solid var(--bronze);
  position: relative;
}
.accreditation-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  margin-bottom: 8px;
}
.accreditation-body {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.accreditation-body strong {
  display: block;
  font-weight: 500;
  font-size: 17px;
  margin-top: 2px;
  letter-spacing: 0.06em;
}
.accreditation-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Expertise badge for banker (parallel to accreditation) */
.expertise-badge {
  margin: 24px 36px 0;
  padding: 22px 28px;
  background: rgba(199, 127, 64, 0.06);
  border-left: 3px solid var(--bronze);
}
.expertise-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 12px;
}
.expertise-body {
  font-family: "Noto Serif JP", serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.expertise-body strong {
  font-weight: 600;
  font-size: 16px;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.expertise-tags span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  background: var(--ivory);
  color: var(--navy);
  border: 1px solid var(--line-soft);
  white-space: nowrap;
}

.founder-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 32px 32px;
}
.founder-keywords span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--bronze);
  padding: 5px 12px;
  border: 1px solid var(--line);
  background: var(--ivory-2);
}

/* Encounter story */
.encounter {
  background: var(--ivory);
  padding: 64px 56px;
  margin-bottom: 40px;
  position: relative;
  border-top: 2px solid var(--bronze);
}
.encounter-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 24px;
}
.encounter h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.encounter h3 .accent-italic {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--bronze);
  font-size: 1.05em;
}
.encounter p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.encounter p:last-child { margin-bottom: 0; }

/* Mutual respect quotes */
.mutual-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.quote-card {
  padding: 56px 44px 40px;
  position: relative;
  background: var(--ivory);
}
.quote-card.quote-navy { border-top: 3px solid var(--navy); }
.quote-card.quote-bronze { border-top: 3px solid var(--bronze); }
.quote-mark {
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 80px;
  font-weight: 400;
  color: rgba(199, 127, 64, 0.25);
  line-height: 1;
}
.quote-body {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.quote-attr {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

/* Closing line */
.joint-closing {
  text-align: center;
  padding: 48px 32px 8px;
}
.joint-closing p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 2;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.joint-closing .closing-strong {
  display: inline-block;
  margin-top: 12px;
  font-weight: 500;
  border-bottom: 2px solid var(--bronze);
  padding-bottom: 4px;
}

/* Legacy joint-statement (kept for backward compat) */
.joint-statement {
  background: var(--ivory);
  padding: 64px 56px;
  margin-bottom: 60px;
  position: relative;
  border-top: 2px solid var(--bronze);
}
.joint-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 24px;
}
.joint-statement h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.joint-statement h3 .accent-italic {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--bronze);
}
.joint-statement p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.joint-statement p:last-child { margin-bottom: 0; }

/* ============ SPOT MENU ============ */
.spot-menu {
  background: var(--ivory);
  padding: 140px 64px;
  position: relative;
}
.spot-menu::before {
  content: "SPOT";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.spot-item {
  background: var(--ivory-2);
  padding: 36px 32px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--bronze);
  transition: background 0.3s ease;
}
.spot-item:nth-child(4),
.spot-item:nth-child(5) { grid-column: span 3; }
.spot-item:hover { background: var(--ivory); }

.spot-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 18px;
}
.spot-item h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.spot-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--bronze);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.spot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--line-soft);
  padding-top: 18px;
}
.spot-list li {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink);
  padding: 6px 0 6px 22px;
  position: relative;
  letter-spacing: 0.02em;
}
.spot-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-weight: 500;
}

.spot-note {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 22px 28px;
  background: rgba(26, 70, 105, 0.04);
  border-left: 2px solid var(--bronze);
  position: relative;
  z-index: 2;
}
.spot-note p {
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.spot-note p:last-child { margin-bottom: 0; }

.spot-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ============ PRICING ============ */
.pricing {
  background: var(--ivory-2);
  padding: 140px 64px;
  position: relative;
}
.pricing::before {
  content: "PRICING";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

/* Base price callout */
.pricing-base {
  background: var(--ivory);
  padding: 48px 48px;
  margin-bottom: 56px;
  text-align: center;
  border-top: 2px solid var(--bronze);
  position: relative;
  z-index: 2;
}
.base-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 24px;
}
.base-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--navy);
}
.base-amount .amount-prefix {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  margin-right: 12px;
  letter-spacing: 0.1em;
}
.base-amount .amount-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}
.base-amount .amount-suffix {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  margin-left: 4px;
  color: var(--navy);
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.base-note {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Pricing table */
.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.pricing-group {
  background: var(--ivory);
  padding: 40px 36px;
  position: relative;
}

.group-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
}
.group-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  display: block;
  margin-bottom: 14px;
}
.group-header h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.group-formula {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-style: italic;
  font-family: "Noto Serif JP", serif;
}

.group-rows {
  display: flex;
  flex-direction: column;
}

.price-row {
  display: flex;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
  gap: 8px;
}
.price-row:last-child { border-bottom: none; }

.row-scale {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.row-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  position: relative;
  top: -4px;
  min-width: 12px;
}
.row-amount {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.price-row-custom .row-amount {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* Notes */
.pricing-notes {
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.4);
  border-left: 2px solid var(--bronze);
  position: relative;
  z-index: 2;
}
.pricing-notes p {
  font-size: 12.5px;
  line-height: 2;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Pricing CTA */
.pricing-cta {
  text-align: center;
  position: relative;
  z-index: 2;
}
.profile {
  background: var(--ivory-2);
  padding: 140px 64px;
  position: relative;
}
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.profile-card {
  background: var(--ivory);
  padding: 48px 40px;
  position: relative;
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.profile-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.profile-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(199, 127, 64, 0.4), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(199, 127, 64, 0.15), transparent 60%);
}
.profile-portrait .initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 120px;
  color: rgba(239, 229, 208, 0.95);
  z-index: 2;
}
.profile-name-en {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  margin-bottom: 8px;
}
.profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.profile-name .reading {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
  letter-spacing: 0.1em;
}
.profile-title {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.profile-content h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.profile-content h3 .accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--bronze);
}
.profile-content p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 22px;
}

.motto {
  margin-top: 40px;
  padding: 32px;
  background: var(--ivory);
  border-top: 2px solid var(--bronze);
  position: relative;
}
.motto-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 12px;
}
.motto-text {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.motto-reading {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.motto-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 2;
}

.profile-credentials {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.credential {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
}
.credential:last-child { border-right: none; }
.credential-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 40px;
  color: var(--bronze);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.credential-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============ ABOUT ============ */
.about {
  background: var(--ivory);
  padding: 140px 64px;
  position: relative;
}
.about::before {
  content: "ABOUT";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-block {
  padding: 24px 0;
}

.about-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  display: block;
  margin-bottom: 28px;
  text-align: center;
}

.about-headline {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.about-body {
  font-family: "Noto Serif JP", serif;
  font-size: 16.5px;
  line-height: 2.2;
  color: var(--ink);
  letter-spacing: 0.04em;
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.about-divider {
  width: 80px;
  height: 1px;
  background: var(--bronze);
  margin: 48px auto;
  opacity: 0.5;
}

/* ============ CASES ============ */
.cases {
  background: var(--ivory-2);
  padding: 140px 64px;
  position: relative;
}
.cases::before {
  content: "CASES";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.case-card {
  background: var(--ivory);
  padding: 36px 36px 32px;
  border-top: 2px solid var(--bronze);
  display: flex;
  flex-direction: column;
  position: relative;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.case-tag {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 0;
  white-space: nowrap;
}
.case-tag-industry {
  background: var(--navy);
  color: var(--ivory);
}
.case-tag-scale {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line-soft);
}

.case-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.case-block {
  margin-bottom: 16px;
}
.case-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  display: block;
  margin-bottom: 6px;
}
.case-block p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.case-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--line-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.result-arrow {
  font-family: "Marcellus", serif;
  font-size: 16px;
  color: var(--bronze);
  flex-shrink: 0;
  line-height: 1.6;
}
.result-text {
  font-family: "Noto Serif JP", serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.cases-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(26, 70, 105, 0.04);
  border-left: 2px solid var(--bronze);
  position: relative;
  z-index: 2;
}
.cases-note p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============ PHOTO DIVIDER ============ */
.photo-divider {
  width: 100%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}
.divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 70, 105, 0.78) 0%, rgba(36, 85, 128, 0.72) 100%);
  z-index: 1;
}
.divider-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.divider-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 28px;
}
.divider-quote {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.55;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

/* ============ FLOW ============ */
.flow {
  padding: 140px 64px;
  background: var(--ivory);
}

/* Featured: Free consultation block */
.consult-block {
  background: var(--ivory-2);
  padding: 64px 56px;
  margin-top: 48px;
  position: relative;
  border-top: 3px solid var(--bronze);
}

.consult-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 24px;
  background: var(--navy);
  color: var(--ivory);
  margin-bottom: 40px;
  position: relative;
}
.consult-badge .badge-en {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bronze);
}
.consult-badge .badge-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.consult-main h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.consult-main p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.consult-main p:last-child { margin-bottom: 0; }

.consult-includes {
  background: var(--ivory);
  padding: 36px 32px;
  border-left: 1px solid var(--line-soft);
}

.includes-section {
  margin-bottom: 28px;
}
.includes-section:last-child { margin-bottom: 0; }
.includes-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--bronze);
  margin-bottom: 16px;
}
.includes-list {
  list-style: none;
}
.includes-list li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px dashed var(--line-soft);
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 600;
}
.includes-list.condition li::before {
  content: "—";
  color: var(--muted);
}

.consult-cta {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
}
.consult-cta .cta-button {
  padding: 16px 40px;
  font-size: 14px;
}
.consult-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Light post-meeting flow */
.post-flow {
  margin-top: 64px;
  padding: 32px;
  background: transparent;
  border: 1px dashed var(--line);
}
.post-flow-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}
.post-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.post-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bronze);
  line-height: 1;
}
.post-text small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  opacity: 0.8;
  margin-top: 2px;
}
.post-arrow {
  font-family: "Marcellus", serif;
  color: var(--line);
  font-size: 16px;
}

/* Legacy flow styles (unused but kept) */
.flow-list {
  margin-top: 60px;
  position: relative;
}
.flow-list::before {
  content: "";
  position: absolute;
  left: 39px; top: 28px; bottom: 28px;
  width: 1px;
  background: var(--line);
}
.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 32px 0;
  align-items: start;
  position: relative;
}
.flow-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 56px;
  color: var(--bronze);
  line-height: 1;
  background: var(--ivory);
  z-index: 2;
  position: relative;
  width: 80px;
  text-align: center;
}
.flow-content {
  padding-top: 8px;
}
.flow-content h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.flow-content .duration {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bronze);
  margin-left: 16px;
}
.flow-content p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink);
}

/* ============ FAQ ============ */
.faq {
  background: var(--ivory-2);
  padding: 140px 64px;
}
.faq-list {
  margin-top: 60px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.faq-question:hover { background: rgba(255, 255, 255, 0.4); }
.faq-q-mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--bronze);
  flex-shrink: 0;
  width: 40px;
  line-height: 1;
}
.faq-q-text {
  font-family: "Noto Serif JP", serif;
  font-size: 17.5px;
  font-weight: 500;
  color: var(--navy);
  flex: 1;
  letter-spacing: 0.02em;
}
.faq-toggle {
  font-family: "Marcellus", serif;
  font-size: 20px;
  color: var(--bronze);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  display: flex;
  gap: 24px;
  padding: 0 16px 28px 16px;
}
.faq-a-mark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 32px;
  color: var(--navy);
  width: 40px;
  flex-shrink: 0;
  line-height: 1;
}
.faq-a-text {
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink);
}

/* Hero campaign banner */
.hero-campaign-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--ivory);
  text-decoration: none;
  border-left: 3px solid var(--bronze);
  transition: background 0.3s ease;
  flex-wrap: wrap;
}
.hero-campaign-banner:hover {
  background: var(--navy-2);
}
.hcb-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--bronze);
}
.hcb-text {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.hcb-detail {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(239, 229, 208, 0.75);
}
.hcb-arrow {
  margin-left: auto;
  color: var(--bronze);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.hero-campaign-banner:hover .hcb-arrow {
  transform: translateX(4px);
}

/* ============ CAMPAIGN ============ */
.campaign {
  background: var(--ivory-2);
  padding: 120px 64px;
  position: relative;
  overflow: hidden;
}
.campaign::before {
  content: "CAMPAIGN";
  position: absolute;
  top: 60px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}

.campaign-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--ivory);
  padding: 64px 56px;
  border-top: 3px solid var(--bronze);
  text-align: center;
}

.campaign-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding: 8px 20px;
  background: var(--navy);
  color: var(--ivory);
}
.ribbon-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--bronze);
}
.ribbon-num {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.campaign-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  word-break: keep-all;
}

.campaign-lead {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 2;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  word-break: keep-all;
}
.campaign-highlight {
  color: var(--bronze);
  font-weight: 600;
  border-bottom: 2px solid var(--bronze);
  padding-bottom: 2px;
}

.campaign-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 44px;
  padding: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
}
.detail-block .detail-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  display: block;
  margin-bottom: 8px;
}
.detail-block p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.detail-block strong {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.campaign-cta { margin-bottom: 20px; }

.campaign-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--navy);
  color: var(--ivory);
  padding: 140px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "CONSULTATION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(100px, 16vw, 240px);
  color: rgba(239, 229, 208, 0.08);
  letter-spacing: 0.05em;
  font-weight: 300;
  pointer-events: none;
  white-space: nowrap;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.final-cta-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--bronze);
  margin-bottom: 32px;
}
.final-cta h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 4.4vw, 52px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.cta-emphasis {
  display: inline-block;
  line-height: 1.1;
  margin: 12px 0 8px;
  vertical-align: baseline;
}
.cta-underlined {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--bronze);
  line-height: 1;
}
.cta-num {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: var(--ivory);
  font-size: clamp(54px, 10vw, 104px);
  letter-spacing: 0.02em;
  line-height: 1;
}
.cta-bun {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: var(--ivory);
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 0.04em;
  margin-left: 6px;
  line-height: 1;
}
.cta-suffix {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: var(--ivory);
  font-size: clamp(32px, 6vw, 64px);
  letter-spacing: 0.06em;
  margin-left: 8px;
  line-height: 1;
}
.final-cta h2 .accent {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--bronze);
}
.final-cta p {
  font-size: 15px;
  line-height: 2.1;
  color: rgba(239, 229, 208, 0.8);
  margin-bottom: 48px;
}

.cta-large {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 56px;
  background: var(--bronze);
  color: var(--ivory);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-large::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--bronze-dark);
  transition: left 0.4s ease;
  z-index: 0;
}
.cta-large:hover::before { left: 0; }
.cta-large span,
.cta-large .arrow { position: relative; z-index: 1; }
.cta-large .arrow { transition: transform 0.3s ease; font-family: "Marcellus", serif; }
.cta-large:hover .arrow { transform: translateX(8px); }

.cta-meta {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-meta-item {
  font-size: 13px;
  color: rgba(239, 229, 208, 0.7);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-meta-item::before {
  content: "✓";
  color: var(--bronze);
  font-size: 14px;
}

/* ============ FOOTER ============ */
footer {
  background: #102E47;
  color: rgba(239, 229, 208, 0.6);
  padding: 0 64px 32px;
  font-size: 13px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 64px; right: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}

/* Top closing statement */
.footer-statement {
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid rgba(239, 229, 208, 0.08);
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.mark-block {
  min-width: 120px;
  height: 64px;
  padding: 0 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(239, 229, 208, 0.18);
}
.mark-block.mark-navy { background: rgba(26, 70, 105, 0.4); }
.mark-block.mark-bronze { background: rgba(199, 127, 64, 0.18); border-color: rgba(199, 127, 64, 0.4); }
.mark-char {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--ivory);
  letter-spacing: 0;
}
.mark-plus {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--bronze);
  font-weight: 300;
}
.footer-statement-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  color: rgba(239, 229, 208, 0.85);
  letter-spacing: 0.04em;
}

/* Main 4-column */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(239, 229, 208, 0.08);
}

.footer-brand .footer-logo {
  font-family: "Marcellus", serif;
  font-size: 26px;
  letter-spacing: 0.32em;
  color: var(--ivory);
  margin-bottom: 18px;
}
.footer-brand .footer-logo .dot { color: var(--bronze); }

.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.8;
  color: var(--bronze);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-desc {
  font-size: 12.5px;
  line-height: 2;
  color: rgba(239, 229, 208, 0.6);
}

.footer-col h5 {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--bronze);
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  padding: 8px 0;
  font-size: 13px;
}
.footer-links li a {
  color: rgba(239, 229, 208, 0.7);
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}
.footer-links li a:hover { color: var(--bronze); }
.footer-links li a.contact-primary {
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
}
.footer-links li a.contact-secondary {
  color: rgba(239, 229, 208, 0.85);
  letter-spacing: 0.04em;
}
.footer-links li a.contact-secondary:hover { color: var(--bronze); }

/* Screen reader only */
.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;
}

/* Social */
.footer-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px dashed rgba(239, 229, 208, 0.12);
}
.social-label {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.36em;
  color: var(--bronze);
  margin-bottom: 14px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 229, 208, 0.2);
  color: rgba(239, 229, 208, 0.7);
  transition: all 0.3s ease;
}
.social-link svg {
  width: 17px;
  height: 17px;
}
.social-link:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ivory);
}

/* Company info */
.company-info {
  list-style: none;
}
.company-info li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(239, 229, 208, 0.08);
  align-items: start;
}
.company-info li:last-child { border-bottom: none; }
.info-label {
  font-family: "Marcellus", serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--bronze);
  padding-top: 3px;
}
.info-value {
  color: rgba(239, 229, 208, 0.85);
  line-height: 1.7;
}

/* Footer bottom */
.footer-bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.footer-bottom .copyright {
  font-family: "Marcellus", serif;
  color: rgba(239, 229, 208, 0.5);
}
.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-legal li a {
  color: rgba(239, 229, 208, 0.5);
  font-size: 12px;
  transition: color 0.3s ease;
}
.footer-legal li a:hover { color: var(--bronze); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  header { padding: 12px 18px; gap: 10px; }
  header .cta-button { display: none; }
  header .logo { font-size: 18px; letter-spacing: 0.22em; flex-shrink: 0; }
  nav { flex: 1; min-width: 0; }
  nav ul {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
    margin: 0;
  }
  nav ul::-webkit-scrollbar { display: none; }
  nav ul li { flex-shrink: 0; }
  nav ul a {
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 6px 8px;
    white-space: nowrap;
    color: var(--ink);
  }
  nav .nav-full { display: none; }
  nav .nav-short { display: inline; }
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 24px 80px;
    gap: 56px;
  }
  .scroll-hint { display: none; }
  .section-padding,
  .problems,
  .strengths,
  .services,
  .profile,
  .flow,
  .faq,
  .final-cta {
    padding: 90px 24px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-item {
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .problem-item:last-child { border-bottom: none; }
  .problem-num { font-size: 44px; margin-bottom: 20px; }
  .problem-quote { font-size: 17px; line-height: 1.8; letter-spacing: 0; }

  /* Phases mobile */
  .phases { padding: 90px 24px; }
  .phase-timeline { padding: 20px 0 24px; margin-bottom: 40px; }
  .timeline-track { gap: 2px; justify-content: space-between; }
  .timeline-step { min-width: 0; flex: 1; padding: 10px 4px; gap: 4px; }
  .timeline-step .step-roman { font-size: 16px; }
  .timeline-step .step-name { font-size: 10px; letter-spacing: 0; }
  .timeline-connector { flex: 1; min-width: 6px; max-width: 12px; height: 1px; }
  .timeline-connector.is-core { height: 2px; }
  .bracket-label { font-size: 9px; letter-spacing: 0.3em; padding: 5px 10px; }

  .phase-core-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  .phase-card { padding: 28px 22px; }
  .phase-card-header { gap: 12px; margin-bottom: 12px; }
  .phase-roman { font-size: 30px; }
  .phase-en { font-size: 10px; letter-spacing: 0.28em; }
  .phase-name { font-size: 23px; }
  .phase-range { font-size: 13px; margin-bottom: 18px; padding-bottom: 14px; }
  .phase-situations li {
    font-size: 14.5px;
    line-height: 1.9;
    padding-left: 22px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: loose;
  }
  .phase-need { padding: 14px 16px; }
  .phase-need p {
    font-size: 13.5px;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: loose;
  }

  .phase-secondary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }
  .phase-card.is-secondary { padding: 22px 20px; }
  .phase-card.is-secondary .phase-name { font-size: 20px; }
  .phase-card.is-secondary .phase-situations li { font-size: 14px; }

  .phases-conclusion { padding: 24px 12px; margin-top: 0; }
  .phases-conclusion p { font-size: 18px; line-height: 1.8; }
  .strength-block,
  .strength-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }
  .strength-block.reverse .strength-visual { order: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .cycle-flow { grid-template-columns: repeat(2, 1fr); margin: 48px 0 40px; }
  .cycle-flow {
    grid-template-columns: 1fr;
    margin: 40px 0 40px;
    border: 1px solid rgba(239, 229, 208, 0.18);
  }
  .cycle-step {
    padding: 24px 28px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 22px;
    row-gap: 6px;
    align-items: center;
    border-right: none !important;
    border-bottom: 1px solid rgba(239, 229, 208, 0.14);
  }
  .cycle-step:last-child { border-bottom: none; }
  .cycle-step::after {
    content: "↓";
    position: absolute;
    right: 24px;
    bottom: -10px;
    top: auto;
    left: auto;
    transform: none;
    font-size: 13px;
    padding: 3px 7px;
  }
  .cycle-step:last-child::after { display: none; }
  .cycle-roman {
    grid-row: 1 / 3;
    align-self: center;
    font-size: 30px;
    margin-bottom: 0;
    min-width: 44px;
    line-height: 1;
  }
  .cycle-en {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.32em;
    align-self: end;
  }
  .cycle-jp {
    grid-column: 2;
    grid-row: 2;
    font-size: 17px;
    letter-spacing: 0.08em;
    align-self: start;
    line-height: 1.2;
  }
  .cycle-roman { font-size: 20px; }

  .service-list { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
  .service-card { padding: 32px 24px; }
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founders-duo {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }
  .founder-meta { padding: 24px 24px 16px; }
  .founder-bio { padding: 24px; }
  .founder-keywords { padding: 0 24px 24px; }
  .accreditation { margin: 0 24px; padding: 16px 18px; }
  .expertise-badge { margin: 20px 24px 0; padding: 18px 22px; }
  .expertise-tags span { font-size: 10.5px; padding: 4px 10px; }

  /* Pricing mobile */
  .pricing { padding: 90px 24px; }
  .pricing::before { font-size: clamp(60px, 16vw, 120px); right: 24px; top: 60px; }
  .pricing-base { padding: 36px 24px; margin-bottom: 40px; }
  .base-amount .amount-prefix { font-size: 14px; margin-right: 8px; }
  .base-amount .amount-suffix { font-size: 18px; }
  .pricing-table { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .pricing-group { padding: 32px 24px; }
  .group-header h3 { font-size: 24px; }
  .row-amount { font-size: 18px; }
  .pricing-notes { padding: 20px 24px; margin-bottom: 32px; }
  .photo-divider { min-height: 280px; padding: 60px 24px; }

  /* Campaign mobile */
  .campaign { padding: 80px 20px; }
  .campaign::before { font-size: clamp(60px, 16vw, 120px); right: 20px; top: 50px; }
  .campaign-inner { padding: 40px 24px; }
  .campaign-ribbon { gap: 10px; padding: 7px 14px; margin-bottom: 24px; }
  .ribbon-label { font-size: 9px; letter-spacing: 0.25em; }
  .ribbon-num { font-size: 12px; }
  .campaign-title { font-size: 24px; margin-bottom: 22px; }
  .campaign-lead { font-size: 14.5px; margin-bottom: 28px; line-height: 1.9; }
  .campaign-detail { grid-template-columns: 1fr; gap: 22px; padding: 24px 0; margin-bottom: 32px; }
  .detail-block p { font-size: 13.5px; }
  .hero-campaign-banner { padding: 10px 16px; gap: 10px; margin-top: 20px; }
  .hcb-label { font-size: 9px; letter-spacing: 0.25em; }
  .hcb-text { font-size: 13px; }
  .hcb-detail { font-size: 11px; width: 100%; margin-top: 2px; }
  .hcb-arrow { margin-left: auto; }

  /* Floating widgets mobile */
  .float-stack {
    bottom: 12px;
    right: 12px;
    left: 12px;
    gap: 8px;
  }
  .float-widget {
    flex-direction: row;
    align-items: center;
    padding: 11px 16px;
    min-width: 0;
    width: 100%;
    gap: 10px;
    justify-content: space-between;
  }
  .float-widget .fw-label { display: none; }
  .float-widget .fw-title { font-size: 13.5px; margin-bottom: 0; flex: 1; line-height: 1.2; }
  .float-widget .fw-sub { font-size: 10.5px; flex-shrink: 0; }

  /* About mobile */
  .about { padding: 90px 24px; }
  .about::before { right: 24px; top: 60px; font-size: clamp(60px, 16vw, 120px); }
  .about-block { padding: 18px 0; }
  .about-label { font-size: 10px; margin-bottom: 22px; }
  .about-headline { font-size: 23px; line-height: 1.65; margin-bottom: 26px; }
  .about-body { font-size: 15.5px; line-height: 2.1; }
  .about-divider { margin: 36px auto; width: 60px; }

  /* Cases mobile */
  .cases { padding: 90px 24px; }
  .cases::before { right: 24px; top: 60px; font-size: clamp(60px, 16vw, 120px); }
  .cases-grid { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .case-card { padding: 28px 24px 24px; }
  .case-title { font-size: 21px; margin-bottom: 20px; }
  .case-block p { font-size: 14.5px; line-height: 1.9; }
  .result-text { font-size: 14.5px; }
  .cases-note { padding: 18px 20px; }

  /* Spot menu mobile */
  .spot-menu { padding: 90px 24px; }
  .spot-menu::before { right: 24px; top: 60px; font-size: clamp(60px, 16vw, 120px); }
  .spot-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .spot-item,
  .spot-item:nth-child(4),
  .spot-item:nth-child(5) { grid-column: span 1; }
  .spot-item { padding: 28px 22px; }
  .spot-item h4 { font-size: 22px; }
  .spot-num { font-size: 28px; margin-bottom: 14px; }
  .spot-note { padding: 18px 20px; margin-bottom: 32px; }
  .joint-statement { padding: 40px 28px; }
  .encounter { padding: 40px 28px; }
  .mutual-quotes { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .quote-card { padding: 48px 28px 32px; }
  .joint-closing { padding: 32px 16px 0; }
  .profile-credentials { grid-template-columns: 1fr; }
  .credential {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }
  .credential:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 0 24px 24px; }
  footer::before { left: 24px; right: 24px; }
  .footer-statement { padding: 56px 0 40px; }
  .mark-block { min-width: 110px; height: 64px; padding: 0 12px; gap: 4px; }
  .mark-char { font-size: 26px; }
  .mark-plus { font-size: 28px; }
  .footer-mark { gap: 14px; margin-bottom: 24px; }
  .footer-statement-text { font-size: 15px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0 40px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { gap: 16px; }
  .flow-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .flow-list::before { left: 29px; }
  .flow-num { font-size: 44px; width: 60px; }
  .consult-block { padding: 36px 24px; }
  .consult-grid { grid-template-columns: 1fr; gap: 32px; }
  .consult-includes { padding: 28px 24px; border-left: none; border-top: 1px solid var(--line-soft); }
  .post-flow { padding: 24px 16px; margin-top: 48px; }
  .post-steps { flex-direction: column; align-items: flex-start; gap: 8px; }
  .post-arrow { display: none; }
  .hero-card { padding: 36px 28px; }
  .strength-visual { padding: 40px 32px; min-height: auto; }
}

/* ============ MULTI-PAGE ADDITIONS ============ */

/* Active nav state */
header nav ul li a.is-active {
  color: var(--bronze);
}
header nav ul li a.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bronze);
}
header nav ul li a { position: relative; }

/* Strengths teaser (compact summary used on top page) */
.strengths-teaser {
  background: var(--ivory);
  padding: 140px 64px;
  position: relative;
}
.strengths-teaser::before {
  content: "STRENGTHS";
  position: absolute;
  top: 80px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}
.strengths-teaser .section-head { max-width: 1100px; margin: 0 auto 80px; position: relative; z-index: 2; }
.teaser-grid {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.teaser-card {
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.3s ease;
}
.teaser-card:hover {
  border-color: var(--bronze);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.08);
}
.teaser-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 44px;
  color: var(--bronze);
  line-height: 1;
}
.teaser-eyebrow {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}
.teaser-title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin: 6px 0 10px;
}
.teaser-text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink);
}
.teaser-cta-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.teaser-cta:hover {
  background: var(--navy);
  color: var(--ivory);
}

@media (max-width: 960px) {
  .strengths-teaser { padding: 90px 24px; }
  .teaser-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .teaser-card { padding: 36px 28px; }
  .teaser-num { font-size: 36px; }
  .teaser-title { font-size: 19px; }
  .teaser-cta { padding: 16px 28px; font-size: 14px; }
}

/* Contact page */
.contact-page {
  background: var(--ivory);
  padding: 160px 64px 120px;
  position: relative;
  min-height: 70vh;
}
.contact-page::before {
  content: "CONTACT";
  position: absolute;
  top: 100px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}
.contact-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 72px;
}
.contact-card {
  background: var(--ivory-2);
  border: 1px solid var(--line-soft);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
}
.contact-card.is-primary {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 24, 20, 0.1);
}
.contact-card .cc-label {
  font-family: "Marcellus", serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bronze);
  text-transform: uppercase;
}
.contact-card.is-primary .cc-label { color: var(--bronze); }
.contact-card .cc-title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.contact-card .cc-sub {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-card.is-primary .cc-sub { color: rgba(239, 229, 208, 0.7); }
.contact-card .cc-arrow {
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.company-block {
  border-top: 1px solid var(--line-soft);
  padding-top: 56px;
  margin-top: 24px;
}
.company-block h3 {
  font-family: "Marcellus", serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--bronze);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 18px 0;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.company-table th {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: var(--navy);
  width: 30%;
  letter-spacing: 0.06em;
}
.company-table td { color: var(--ink); }

@media (max-width: 960px) {
  .contact-page { padding: 100px 24px 80px; }
  .contact-options { grid-template-columns: 1fr; gap: 16px; margin-top: 44px; margin-bottom: 56px; }
  .contact-card { padding: 32px 24px; }
  .contact-card .cc-title { font-size: 19px; }
  .company-table th, .company-table td { display: block; padding: 10px 0; border-bottom: none; width: 100%; }
  .company-table th { padding-top: 18px; color: var(--bronze); font-size: 12px; letter-spacing: 0.15em; }
  .company-table td { padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
}

/* ============ LEGAL PAGES (Privacy / Terms) ============ */
.legal-page {
  background: var(--ivory);
  padding: 160px 64px 120px;
  position: relative;
  min-height: 70vh;
}
.legal-page::before {
  content: "LEGAL";
  position: absolute;
  top: 100px;
  right: 60px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(60px, 12vw, 180px);
  color: rgba(26, 70, 105, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  font-weight: 500;
}
.legal-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.legal-inner h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.legal-inner .legal-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--bronze);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  display: block;
}
.legal-inner h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--bronze);
}
.legal-inner p {
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 16px;
}
.legal-inner ol {
  counter-reset: legal-counter;
  list-style: none;
  padding: 0;
}
.legal-inner ol > li {
  counter-increment: legal-counter;
  position: relative;
  padding-left: 0;
  margin-bottom: 36px;
}
.legal-inner ol > li > h2::before {
  content: counter(legal-counter) ". ";
  color: var(--bronze);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  margin-right: 6px;
}
.legal-address {
  background: var(--ivory-2);
  border-left: 3px solid var(--bronze);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.9;
  font-family: "Noto Serif JP", serif;
}
.legal-meta {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 960px) {
  .legal-page { padding: 100px 24px 80px; }
  .legal-inner h1 { font-size: 24px; }
  .legal-inner .legal-en { margin-bottom: 40px; }
  .legal-inner h2 { font-size: 16px; margin: 36px 0 12px; }
  .legal-inner p { font-size: 14px; line-height: 1.95; }
}
