:root {
  --forest: #1c3d2e;
  --forest-mid: #2a5740;
  --gold: #c9a870;
  --gold-pale: #e8d9bb;
  --cream: #f7f4ef;
  --cream-dark: #eae5dc;
  --text: #1a1a18;
  --muted: #5a5a54;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,244,239,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-dark);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; letter-spacing: 0.18em;
  color: var(--forest);
}
.logo small {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  color: var(--muted); margin-top: 3px;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 0.12em;
  color: var(--muted); text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 10px 22px;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

/* ─── HERO ─── */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh; padding-top: 72px;
}
.hero-l {
  background: var(--forest);
  padding: 100px 68px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-l::after {
  content: 'MENTAL HEALTH';
  position: absolute; bottom: -30px; left: -8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.035); white-space: nowrap; pointer-events: none;
}
.eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  animation: fadeUp .8s .2s both;
}
.hero-h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 34px; font-weight: 300; line-height: 1.75;
  color: var(--white); margin-bottom: 32px;
  animation: fadeUp .8s .35s both;
}
.hero-h1 strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 300;
  font-size: 52px; line-height: 1.2; color: var(--gold);
  margin-bottom: 12px;
}
.hero-lead {
  font-size: 13px; line-height: 2.1; color: rgba(255,255,255,.62);
  max-width: 380px; margin-bottom: 52px;
  animation: fadeUp .8s .5s both;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--forest);
  padding: 16px 34px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.18em;
  text-decoration: none; transition: background .25s; width: fit-content;
  animation: fadeUp .8s .65s both;
}
.btn-gold::after { content: '→'; }
.btn-gold:hover { background: var(--gold-pale); }

.hero-r {
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 80px;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px 48px;
  animation: fadeUp .8s .4s both;
}
.stat { text-align: center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 70px; font-weight: 300; color: var(--forest);
  line-height: 1;
}
.stat-n sup { font-size: 30px; }
.stat-l {
  font-size: 11px; letter-spacing: 0.15em; color: var(--muted);
  line-height: 1.7; margin-top: 10px;
}
.stats-grid hr {
  grid-column: 1 / -1; border: none;
  border-top: 1px solid rgba(28,61,46,.18);
}

/* ─── SECTION BASE ─── */
.sec { padding: 110px 80px; }
.sec-tag {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.sec-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 30px; font-weight: 300; line-height: 1.7;
  color: var(--forest); margin-bottom: 64px;
}

/* ─── SERVICES ─── */
.sec-services { background: var(--white); }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--cream-dark);
}
.svc-card {
  padding: 56px 44px;
  border-right: 1px solid var(--cream-dark);
  transition: background .25s;
}
.svc-card:last-child { border-right: none; }
.svc-card:hover { background: var(--cream); }
.svc-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--cream-dark);
  line-height: 1; margin-bottom: 20px;
}
.svc-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 400; color: var(--forest);
  line-height: 1.6; margin-bottom: 18px;
}
.svc-desc { font-size: 13px; line-height: 2.1; color: var(--muted); }
.svc-list {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
  list-style: none;
}
.svc-list li {
  font-size: 12px; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: flex-start; gap: 10px;
}
.svc-list li::before {
  content: '—'; color: var(--gold);
  font-size: 10px; flex-shrink: 0; margin-top: 4px;
}

/* ─── ABOUT ─── */
.sec-about {
  background: var(--forest);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}
.about-tag { color: var(--gold); }
.about-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px; font-weight: 300; line-height: 1.8;
  color: var(--white); margin-bottom: 28px;
}
.about-body {
  font-size: 14px; line-height: 2.3;
  color: rgba(255,255,255,.65); margin-bottom: 40px;
}
.creds { display: flex; flex-direction: column; gap: 14px; }
.cred {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.1);
}
.cred-dot {
  color: var(--gold); font-size: 14px;
  flex-shrink: 0; margin-top: 1px;
}
.cred-txt { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.6; }

/* ─── INDUSTRIES ─── */
.sec-industry { background: var(--cream); }
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  padding: 10px 22px;
  border: 1px solid var(--forest);
  font-size: 12px; letter-spacing: 0.08em; color: var(--forest);
}

/* ─── FLOW ─── */
.sec-flow { background: var(--white); }
.flow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 0;
}
.flow-step {
  padding: 40px 32px;
  border-right: 1px solid var(--cream-dark);
  position: relative;
}
.flow-step:last-child { border-right: none; }
.step-no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 18px;
}
.step-title {
  font-size: 14px; font-weight: 500; color: var(--forest);
  margin-bottom: 12px;
}
.step-desc { font-size: 12px; color: var(--muted); line-height: 1.9; }

/* ─── CONTACT ─── */
.sec-contact { background: var(--cream-dark); }
.contact-wrap { max-width: 740px; margin: 0 auto; }
.contact-lead {
  font-size: 14px; color: var(--muted); margin-top: -40px; margin-bottom: 56px;
}
.cf { display: flex; flex-direction: column; gap: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label {
  font-size: 11px; letter-spacing: 0.18em; color: var(--muted);
}
.fg label span { color: var(--gold); margin-left: 4px; }
.fg input, .fg select, .fg textarea {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 13px 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 300; color: var(--text);
  outline: none; border-radius: 0; appearance: none;
  transition: border-color .25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--forest);
}
.fg textarea { height: 150px; resize: vertical; }
.privacy {
  font-size: 11px; color: var(--muted); line-height: 1.9;
}
.cf-turnstile { margin-top: 4px; }
.btn-submit {
  background: var(--forest); color: var(--white);
  border: none; padding: 17px 44px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; letter-spacing: 0.2em;
  cursor: pointer; transition: background .25s;
  align-self: flex-start;
}
.btn-submit:hover { background: var(--forest-mid); }
.btn-submit:disabled { opacity: 0.6; cursor: default; }
.cf-msg {
  display: none; padding: 18px 24px;
  font-size: 14px; line-height: 1.8;
}
.cf-msg-ok { background: var(--forest); color: var(--white); }
.cf-msg-ng { background: #8a3a3a; color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  padding: 44px 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; letter-spacing: 0.22em;
  color: var(--white);
}
.f-logo small {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,.35); margin-top: 6px;
}
.f-info {
  font-size: 11px; color: rgba(255,255,255,.35);
  line-height: 2; text-align: right;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-l { padding: 80px 32px; }
  .hero-r { padding: 56px 32px; }
  .hero-h1 { font-size: 28px; }
  .hero-h1 strong { font-size: 42px; }
  .stats-grid { gap: 36px 32px; }
  .stat-n { font-size: 56px; }
  .sec { padding: 80px 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .sec-about { grid-template-columns: 1fr; gap: 48px; padding: 80px 32px; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-step { border-bottom: 1px solid var(--cream-dark); }
  .cf-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 20px; padding: 40px 24px; text-align: center; }
  .f-info { text-align: center; }
}
