/* ============================================================
   NexaHealth Solutions — Luxury Medical Inbound
   Palette: 墨紺(ink navy) × 象牙(ivory) × 燻銀ゴールド
   Type   : Cormorant Garamond (display) + Noto Serif JP + Inter/Noto Sans
   ============================================================ */

:root {
  --ink:        #0a1424;
  --ink-2:      #0e1a2e;
  --ink-3:      #131f36;
  --ivory:      #f2ebd8;
  --ivory-2:    #ece3cc;
  --paper:      #f7f2e3;
  --text:       #ecead9;
  --muted:      #b7b8b6;
  --muted-2:    #8f9098;
  --gold:       #c8a75a;
  --gold-soft:  #e4cf94;
  --gold-line:  rgba(200, 167, 90, 0.32);
  --line:       rgba(236, 234, 217, 0.10);
  --line-2:     rgba(236, 234, 217, 0.18);
  --shadow-lg:  0 40px 120px rgba(0, 0, 0, 0.45);
  --shadow-md:  0 20px 60px rgba(0, 0, 0, 0.28);
  --radius:     2px;
  --radius-sm:  2px;
  --container:  1240px;
  --serif-en:   "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --serif-jp:   "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans:       "Inter", "Noto Sans JP", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[lang="zh"], html[lang="zh-CN"] { --serif-jp: "Noto Serif SC", "Songti SC", serif; }
html[lang="en"] { --serif-jp: var(--serif-en); }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.01em;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 12% 8%,  rgba(200,167,90,0.10), transparent 60%),
    radial-gradient(50% 45% at 92% 22%, rgba(90,120,180,0.08), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(200,167,90,0.05), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Container */
.container { width: min(100% - 48px, var(--container)); margin: 0 auto; position: relative; z-index: 1; }

/* ================= Typography ================= */
h1, h2, h3, h4 { font-weight: 500; margin: 0; letter-spacing: 0.005em; }
h1 { font-family: var(--serif-en); font-weight: 500; line-height: 1.06; letter-spacing: -0.005em; }
html[lang="ja"] h1, html[lang="zh"] h1 { font-family: var(--serif-jp); font-weight: 500; letter-spacing: 0.02em; }

.serif-en { font-family: var(--serif-en); font-style: italic; font-weight: 400; }

/* Eyebrow / kicker */
.eyebrow, .kicker, .lang-toggle button {
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: none;
  color: var(--gold);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-3px);
}

/* ================= Header ================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(10,20,36,0.92) 0%, rgba(10,20,36,0.55) 70%, transparent 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(10, 20, 36, 0.94);
  border-bottom: 1px solid var(--line);
}
.compact-header {
  position: static;
  background: rgba(10,20,36,0.94);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.logo-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  color: var(--gold-soft);
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 500;
  background:
    radial-gradient(circle at 30% 30%, rgba(228,207,148,0.25), transparent 60%),
    linear-gradient(180deg, rgba(200,167,90,0.14), rgba(255,255,255,0.02));
  box-shadow: inset 0 0 24px rgba(228,207,148,0.10);
}
.logo-text {
  font-family: var(--serif-en);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ivory);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-family: var(--serif-en);
  font-style: italic;
  transition: color 0.2s ease;
  position: relative;
}
.nav a:not(.nav-cta):hover { color: var(--gold-soft); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--gold-line);
  color: var(--gold-soft) !important;
  font-style: italic;
  letter-spacing: 0.16em;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line-2);
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--muted-2);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-style: normal;
  transition: color 0.2s ease;
}
.lang-toggle button.active { color: var(--gold); position: relative; }
.lang-toggle button.active::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
}
.lang-toggle button:hover { color: var(--gold-soft); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold-line);
  width: 40px; height: 40px;
  color: var(--gold-soft);
  cursor: pointer;
}
.menu-toggle svg { width: 18px; height: 18px; }

/* ================= Hero ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,20,36,0.88) 0%, rgba(10,20,36,0.72) 60%, rgba(10,20,36,0.94) 100%),
    linear-gradient(135deg, #0a1424 0%, #0e1a2e 50%, #0a1424 100%);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
}
.hero-decor svg { width: 100%; height: 100%; display: block; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { display: block; margin-bottom: 28px; }
.hero-copy h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  white-space: pre-line;
  margin-bottom: 28px;
  color: var(--ivory);
  font-weight: 400;
}
html[lang="ja"] .hero-copy h1,
html[lang="zh"] .hero-copy h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.28;
  font-weight: 500;
}
.hero-copy .lead {
  font-size: 17px;
  line-height: 1.95;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 44px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Right panel */
.hero-panel {
  position: relative;
  padding: 44px 40px;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  backdrop-filter: blur(12px);
}
.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gold);
}
.hero-panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.hero-panel::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-panel .trust-pill {
  display: inline-block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
  padding: 8px 18px;
  border: 1px solid var(--gold-line);
  margin-bottom: 32px;
}
.hero-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}
.hero-highlights li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.hero-highlights li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-highlights strong {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: 28px;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.hero-highlights span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.3em;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50%      { transform: scaleY(1);   transform-origin: top; }
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid transparent;
  background: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(200,167,90,0.25);
}
.btn-secondary {
  border-color: var(--gold-line);
  color: var(--ivory);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn-full { width: 100%; }
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ================= Sections ================= */
.section {
  padding: 140px 0;
  position: relative;
  z-index: 1;
}
.section-dark {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-accent {
  background:
    linear-gradient(180deg, rgba(200,167,90,0.03) 0%, rgba(200,167,90,0) 100%);
}

.section-heading {
  text-align: center;
  margin-bottom: 72px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading .kicker { display: block; margin-bottom: 22px; }
.section-heading .kicker::before { display: none; }
.section-heading h2 {
  font-family: var(--serif-jp);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.3;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 20px;
}
html[lang="en"] .section-heading h2 {
  font-family: var(--serif-en);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.section-heading .intro {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  max-width: 68ch;
  margin: 20px auto 0;
}
.section-heading .ornament {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
  position: relative;
}
.section-heading .ornament::before,
.section-heading .ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.section-heading .ornament::before { left: -14px; }
.section-heading .ornament::after  { right: -14px; }

/* ================= Cards / Grids ================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
}

.value-card,
.service-card {
  position: relative;
  padding: 48px 36px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  transition: all 0.4s ease;
  overflow: hidden;
}
.value-card:hover,
.service-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.value-card:hover::before,
.service-card:hover::before { opacity: 1; }

.card-no {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}
.value-card h3,
.service-card h3 {
  font-family: var(--serif-jp);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ivory);
  margin-bottom: 18px;
  font-weight: 500;
}
html[lang="en"] .value-card h3,
html[lang="en"] .service-card h3 { font-family: var(--serif-en); font-weight: 500; }
.value-card p,
.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(228,207,148,0.18), transparent 60%);
}

/* ================= MEJ Section ================= */
.section-mej {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.section-mej::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 90%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.mej-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.mej-lead {
  position: sticky;
  top: 120px;
}
.mej-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--gold-line);
  margin-bottom: 36px;
  background: rgba(200,167,90,0.05);
}
.mej-badge .seal {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.08em;
  background: radial-gradient(circle at 30% 30%, rgba(228,207,148,0.25), transparent 60%);
}
.mej-badge .label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--gold-soft);
}

.mej-title {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 500;
}
html[lang="en"] .mej-title { font-family: var(--serif-en); font-weight: 500; }

.mej-lead p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
  margin: 0 0 28px;
}
.mej-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  transition: all 0.3s ease;
}
.mej-link:hover {
  background: var(--gold);
  color: var(--ink);
}

.mej-points {
  display: grid;
  gap: 28px;
}
.mej-point {
  padding: 32px 34px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  position: relative;
  transition: all 0.3s ease;
}
.mej-point:hover {
  border-color: var(--gold-line);
  transform: translateX(4px);
}
.mej-point::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -1px;
  width: 3px;
  height: 32px;
  background: var(--gold);
}
.mej-point h3 {
  font-family: var(--serif-jp);
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.5;
}
html[lang="en"] .mej-point h3 { font-family: var(--serif-en); font-weight: 500; }
.mej-point p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

/* ================= Process / Timeline ================= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-line), transparent 90%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 28px 0;
  align-items: baseline;
  position: relative;
}
.timeline-item + .timeline-item { border-top: 1px solid var(--line); }
.timeline-no {
  position: relative;
  z-index: 1;
  width: 80px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  font-weight: 400;
  padding-left: 16px;
}
.timeline-no::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 12px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
}
.timeline-item h3 {
  font-family: var(--serif-jp);
  font-size: 20px;
  color: var(--ivory);
  margin-bottom: 8px;
  font-weight: 500;
}
html[lang="en"] .timeline-item h3 { font-family: var(--serif-en); font-weight: 500; }
.timeline-item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line-2);
}
.faq-item:last-child { border-bottom: 1px solid var(--line-2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  color: var(--ivory);
  font-family: var(--serif-jp);
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 28px;
  line-height: 1.5;
  transition: color 0.25s ease;
}
html[lang="en"] .faq-question { font-family: var(--serif-en); font-weight: 500; }
.faq-question:hover { color: var(--gold-soft); }
.faq-q-mark {
  flex-shrink: 0;
  width: 32px;
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
}
.faq-toggle {
  margin-left: auto;
  flex-shrink: 0;
  width: 32px; height: 32px;
  position: relative;
  color: var(--gold-soft);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq-toggle::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.is-open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 0 32px 60px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

/* ================= Company ================= */
.company-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.info-table {
  border-top: 1px solid var(--gold-line);
}
.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.info-label {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.18em;
}
.info-value {
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.85;
}
.trust-panel {
  padding: 44px 40px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(200,167,90,0.04), rgba(255,255,255,0.01));
  position: relative;
}
.trust-panel::before,
.trust-panel::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.trust-panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.trust-panel::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.trust-panel h3 {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.trust-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

/* ================= Contact ================= */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.contact-lead p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}
.contact-meta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.contact-meta a { color: var(--gold-soft); }
.contact-meta strong {
  color: var(--gold);
  font-family: var(--serif-en);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 6px;
}
.contact-form {
  padding: 44px 40px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  position: relative;
}
.contact-form::before,
.contact-form::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.contact-form::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.contact-form::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}
.form-row.two-cols {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-row.two-cols > div { display: grid; gap: 8px; }
label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.25s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%),
                    linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
select option { background: var(--ink); color: var(--ivory); }
textarea { resize: vertical; min-height: 140px; }

.consent-row { margin-top: 8px; }
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: normal;
  font-family: var(--sans);
  font-style: normal;
  line-height: 1.55;
  cursor: pointer;
}
.checkbox input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid transparent;
  display: none;
}
.form-status.success {
  display: block;
  border-color: rgba(120,180,140,0.4);
  color: #b7e0c5;
  background: rgba(90,150,110,0.08);
}
.form-status.error {
  display: block;
  border-color: rgba(220,130,130,0.4);
  color: #e6b7b7;
  background: rgba(180,80,80,0.08);
}

/* ================= Footer ================= */
.site-footer {
  padding: 60px 0 48px;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--serif-en);
  font-size: 20px;
  color: var(--ivory);
  margin: 0 0 8px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.footer-tag {
  color: var(--muted-2);
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.02em;
}
.footer-copy {
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 16px;
  letter-spacing: 0.06em;
  font-family: var(--serif-en);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.footer-links a { transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold-soft); }

/* ================= Policy / Thanks ================= */
.policy-page, .thanks-page { min-height: 100vh; }
.policy-wrap {
  padding: 60px 0 120px;
}
.policy-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 52px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  position: relative;
}
.policy-card::before,
.policy-card::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.policy-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.policy-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.policy-card h1 {
  font-family: var(--serif-jp);
  font-size: 32px;
  color: var(--ivory);
  margin: 8px 0 40px;
  font-weight: 500;
}
.policy-section + .policy-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.policy-section h2 {
  font-family: var(--serif-jp);
  font-size: 20px;
  color: var(--gold-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.policy-section p, .policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 8px;
}
.policy-section ul { padding-left: 20px; margin: 0; }

.thanks-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.thanks-card {
  max-width: 720px;
  text-align: center;
  padding: 72px 52px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  position: relative;
}
.thanks-card::before,
.thanks-card::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  border: 1px solid var(--gold);
}
.thanks-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.thanks-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.thanks-ornament {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 20px;
}
.thanks-card h1 {
  font-family: var(--serif-jp);
  font-size: 32px;
  color: var(--ivory);
  font-weight: 500;
  margin-bottom: 20px;
}
html[lang="en"] .thanks-card h1 { font-family: var(--serif-en); font-weight: 500; }
.thanks-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 14px;
}
.thanks-card .btn { margin-top: 32px; }

/* ================= Reveal animations ================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Responsive ================= */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2, .company-inner, .contact-inner, .mej-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .mej-lead { position: static; }
}
@media (max-width: 820px) {
  .grid-3 { grid-template-columns: 1fr; gap: 20px; }
  .section { padding: 96px 0; }
  .hero { padding: 120px 0 80px; }
  .hero-copy h1 { font-size: clamp(36px, 8vw, 54px); }
  html[lang="ja"] .hero-copy h1,
  html[lang="zh"] .hero-copy h1 { font-size: clamp(32px, 7vw, 44px); }
  .value-card, .service-card, .contact-form, .policy-card, .thanks-card, .trust-panel { padding: 32px 24px; }
  .mej-point { padding: 26px 24px; }
  .info-row { grid-template-columns: 1fr; gap: 6px; }
  .form-row.two-cols { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 68px 1fr; gap: 20px; }
  .timeline::before { left: 34px; }
  .timeline-no { width: 60px; font-size: 24px; padding-left: 12px; }
  .timeline-no::before { left: 24px; }

  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; padding: 30px 24px; flex-direction: column; align-items: flex-start; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); gap: 22px; }
  .nav.is-open { display: flex; }
  .lang-toggle { margin: 0; padding: 0; border: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .footer-inner { flex-direction: column; }
  .policy-card { padding: 40px 28px; }
  .thanks-card { padding: 48px 28px; }
  .faq-answer-inner { padding-left: 40px; }
}
