/* ─────────────────────────────────────────────────
   KYOYO — Design System
   Professional · Calm · Trusted
───────────────────────────────────────────────── */

:root {
  /* Colors */
  --c-bg:        #FAFAF8;
  --c-surface:   #FFFFFF;
  --c-beige:     #F4EFE7;
  --c-beige-2:   #EFE7DA;
  --c-green:     #2F6B4F;
  --c-green-d:   #234F3B;
  --c-green-l:   #3E8463;
  --c-gold:      #C9A46A;
  --c-gold-d:    #A8854F;
  --c-text:      #1F1F1F;
  --c-text-mute: #555550;
  --c-text-soft: #8A857C;
  --c-line:      #E3DDD2;
  --c-line-soft: #ECE7DC;

  /* Type */
  --f-display: "Manrope", "Noto Sans JP", system-ui, sans-serif;
  --f-sans:    "Be Vietnam Pro", "Noto Sans JP", system-ui, sans-serif;
  --f-jp:      "Noto Sans JP", "Be Vietnam Pro", sans-serif;

  /* Spatial */
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.01em; font-family: var(--f-display); }
p { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }
em { font-style: normal; color: var(--c-green); font-weight: inherit; }

::selection { background: var(--c-green); color: #fff; }

/* Hide Japanese kanji decorations when site language is not Japanese */
html:not([lang="ja"]) .service-row__jp,
html:not([lang="ja"]) .flow__kanji,
html:not([lang="ja"]) .cta-banner__kanji {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Type scale */
.display {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.display em { color: var(--c-green); }
.lead {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--c-text-mute);
}

/* ─── Announcement bar ─── */
.announce {
  background: var(--c-green);
  color: #F4EFE7;
  font-size: 0.82rem;
  letter-spacing: 0.005em;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.announce__mark {
  font-family: var(--f-jp);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-gold);
  border: 1px solid rgba(201,164,106,.5);
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.announce__link {
  color: var(--c-gold);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.announce__link:hover { border-color: var(--c-gold); }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(250, 250, 248, .97);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-green);
}
.brand__mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--c-text);
}
.brand__sub {
  font-family: var(--f-jp);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  margin-top: 3px;
  font-weight: 400;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: var(--c-text);
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--c-green); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--c-green);
  transition: right .3s var(--ease);
}
.nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language selector */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--c-text-mute);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.lang__toggle:hover { border-color: var(--c-green); color: var(--c-green); }
.lang__toggle svg { width: 10px; height: 10px; }
.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 200px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, .14);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 60;
}
.lang.is-open .lang__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang__menu li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  transition: background .15s var(--ease);
}
.lang__menu li:hover { background: var(--c-beige); }
.lang__menu li span {
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--c-green);
  width: 24px;
}
.lang__menu li em {
  font-style: normal;
  color: var(--c-text);
  font-weight: 400;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.005em;
  transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,.15) inset, 0 6px 18px -8px rgba(47, 107, 79, .45);
}
.btn--primary:hover {
  background: var(--c-green-d);
}
.btn--ghost {
  border: 1px solid var(--c-line);
  color: var(--c-text);
  background: var(--c-surface);
}
.btn--ghost:hover {
  border-color: var(--c-green);
  color: var(--c-green);
}
.btn--sm { padding: 9px 16px; font-size: 0.84rem; }
.btn--block { width: 100%; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
}
.hero__grain {
  display: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-gold-d);
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--c-text);
}
.hero__line { display: block; }
.hero__line--accent { color: var(--c-green); }
.hero__sub-jp {
  display: block;
  font-family: var(--f-jp);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--c-text-soft);
  margin-top: 18px;
}

.hero__lede {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  color: var(--c-text-mute);
  max-width: 520px;
  margin: 24px 0 32px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  border-top: 1px solid var(--c-line);
  padding-top: 28px;
  max-width: 560px;
}
.hero__stats > div { margin: 0; }
.hero__stats dt {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--c-green);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.hero__stats dd {
  margin: 0;
  font-size: 0.78rem;
  color: var(--c-text-soft);
  line-height: 1.4;
}

/* Hero visual */
.hero__visual {
  position: relative;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}
.hero__image {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 48px -24px rgba(0, 0, 0, .2);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--c-surface);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, .18);
}
.hero__badge-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
}
.hero__badge-value {
  font-family: var(--f-display);
  font-size: 0.95rem;
  color: var(--c-green);
  font-weight: 600;
  letter-spacing: -0.005em;
}

/* ─── Stats trust bar ─── */
.stats-bar {
  background: var(--c-beige);
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stats-bar .stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 28px;
  text-align: center;
  border-right: 1px solid var(--c-line);
  align-items: center;
}
.stats-bar .stat:last-child { border-right: 0; }
.stats-bar .stat__num {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: flex-start;
}
.stats-bar .stat__num small {
  font-size: 0.5em;
  margin-left: 2px;
  margin-top: 0.18em;
  color: var(--c-gold-d);
  font-weight: 700;
}
.stats-bar .stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--c-text-mute);
  line-height: 1.45;
  max-width: 200px;
}

/* ─── Final CTA banner ─── */
.cta-banner {
  background: var(--c-green);
  color: #F4EFE7;
  padding: clamp(56px, 7vw, 88px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: .35;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner__text {
  flex: 1;
  min-width: 280px;
}
.cta-banner__kanji {
  display: block;
  font-family: var(--f-jp);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-banner__text p {
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  color: rgba(244, 239, 231, .82);
  max-width: 560px;
  line-height: 1.6;
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-green-d);
  padding: 16px 28px;
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: 0 10px 28px -12px rgba(201, 164, 106, .55);
  flex-shrink: 0;
}
.btn--gold:hover {
  background: #d9b378;
  color: var(--c-green-d);
  transform: translateY(-1px);
}

/* ─── Section base ─── */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
}
.section--beige {
  background: var(--c-beige);
}

.section__index {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section__no {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-gold-d);
}
.section__label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
  position: relative;
  padding-left: 28px;
}
.section__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--c-text-soft);
}
.section__index--inline { margin-bottom: 20px; }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .section__index { justify-content: center; }
.section-head__lede {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--c-text-mute);
  margin-top: 18px;
  max-width: 620px;
}

/* ─── About ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about__text .section__index { margin-bottom: 4px; }
.about__media {
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  position: sticky;
  top: 100px;
}
.about__media figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__media-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--c-text-soft);
  letter-spacing: 0.04em;
}
.about__media-meta span:last-child {
  font-family: var(--f-jp);
}

.about__text > * + * { margin-top: 14px; }
.about__text .display { margin-bottom: 2px; }
.about__text .lead { font-size: 1rem; line-height: 1.6; }
.about__text > p { font-size: 0.95rem; line-height: 1.65; }

.quote {
  position: relative;
  margin: 0;
  padding: 16px 0 0 18px;
  border-left: 2px solid var(--c-gold);
}
.quote__mark { display: none; }
.quote p {
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--c-text);
}
.quote footer {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--c-text-soft);
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
}
.meta-list > div { margin: 0; }
.meta-list dt {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
  margin-bottom: 4px;
}
.meta-list dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 0.88rem;
  color: var(--c-text);
  font-weight: 600;
  line-height: 1.4;
}

/* ─── Services ─── */
.services__list {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(24px, 3.5vw, 48px);
  padding: clamp(26px, 3.2vw, 36px) clamp(22px, 3vw, 36px);
  border-top: 1px solid var(--c-line-soft);
  align-items: start;
}
.service-row:first-child { border-top: 0; }

.service-row__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-row__jp {
  font-family: var(--f-jp);
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 500;
  color: var(--c-green);
  line-height: 1;
  letter-spacing: 0.02em;
}
.service-row__no {
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-gold-d);
  padding: 4px 9px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
}
.service-row h3 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.service-row__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row__body > p {
  font-size: 0.96rem;
  color: var(--c-text-mute);
  line-height: 1.65;
  max-width: 580px;
}
.service-row__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 28px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-soft);
}
.service-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-mute);
  padding: 5px 0;
}
.service-row__list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* ─── Why ─── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .25s var(--ease);
}
.why-card:hover {
  border-color: var(--c-green);
  box-shadow: 0 14px 32px -20px rgba(47, 107, 79, .25);
  transform: translateY(-2px);
}
.why-card__no {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--f-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-gold-d);
}
.why-card__icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  color: var(--c-green);
  background: var(--c-beige);
  border-radius: 10px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.why-card:hover .why-card__icon {
  background: var(--c-green);
  color: var(--c-surface);
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 600;
  margin-top: 4px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--c-text-mute);
  line-height: 1.6;
}

/* Why — feature variant */
.why-card--feature {
  background: var(--c-green);
  border-color: var(--c-green);
  color: #F4EFE7;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  flex-wrap: wrap;
}
.why-card--feature:hover {
  border-color: var(--c-green-d);
  box-shadow: 0 18px 40px -20px rgba(47, 107, 79, .55);
}
.why-card--feature .why-card__no { color: var(--c-gold); top: 22px; right: 28px; }
.why-card--feature .why-card__icon {
  background: rgba(255, 255, 255, .14);
  color: var(--c-gold);
  width: 56px;
  height: 56px;
  border-radius: 12px;
}
.why-card--feature:hover .why-card__icon {
  background: var(--c-gold);
  color: var(--c-green-d);
}
.why-card--feature .why-card__icon svg { width: 28px; height: 28px; }
.why-card--feature h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 0;
  flex-basis: 100%;
  order: 3;
}
.why-card--feature p {
  color: rgba(244, 239, 231, .82);
  font-size: 0.92rem;
  flex-basis: 100%;
  order: 4;
}
.why-card__stat {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -0.03em;
  order: 2;
  display: inline-flex;
  align-items: flex-start;
}
.why-card__stat small {
  font-size: 0.5em;
  margin-left: 2px;
  margin-top: 0.15em;
  color: var(--c-gold);
}

/* ─── Stories ─── */
.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.story-card {
  background: var(--c-surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-line-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(0, 0, 0, .12);
}
.story-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.story-card figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.story-card:hover figure img { transform: scale(1.04); }
.story-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.story-card__kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-gold-d);
}
.story-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.4;
}
.story-card--feature h3 { font-size: 1.28rem; }
.story-card__body p {
  font-size: 0.9rem;
  color: var(--c-text-mute);
  line-height: 1.6;
}
.story-card__by {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  margin-top: auto;
  padding-top: 8px;
  font-weight: 500;
}

.stories__partners {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stories__partners-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
}
.stories__partners ul {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stories__partners li {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-mute);
  letter-spacing: 0.005em;
}

/* ─── Flow ─── */
.flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.flow__steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 44px;
  right: calc(20% - 44px);
  height: 0;
  border-top: 1.5px dashed var(--c-gold);
  opacity: .5;
}
.flow__step {
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.flow__indicator {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg);
  padding-right: 6px;
  z-index: 1;
  margin-left: -2px;
}
.flow__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -8px rgba(47, 107, 79, .55);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.flow__icon {
  width: 22px;
  height: 22px;
  color: var(--c-gold-d);
  display: inline-grid;
  place-items: center;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.flow__icon svg { width: 100%; height: 100%; }
.flow__step:hover .flow__num {
  transform: scale(1.05);
  background: var(--c-green-d);
}
.flow__step:hover .flow__icon {
  opacity: 1;
  transform: translateX(0);
}
.flow__kanji {
  font-family: var(--f-jp);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--c-gold-d);
  margin-top: 4px;
}
.flow__step h3 {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 600;
  margin-top: 2px;
}
.flow__step p {
  font-size: 0.88rem;
  color: var(--c-text-mute);
  line-height: 1.6;
}

/* Flow has beige-ish background to enhance vivid step circles */
.flow.section { background: var(--c-bg); }

/* ─── Contact ─── */
.contact {
  background: var(--c-beige);
  position: relative;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  position: relative;
}
.contact__intro > * + * { margin-top: 20px; }
.contact__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  border-top: 1px solid var(--c-line);
  padding-top: 28px;
  margin-top: 32px;
}
.contact__channels li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__channel-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
}
.contact__channels li span:last-child {
  font-family: var(--f-display);
  color: var(--c-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact__form {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, .14);
}
.contact__form-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--c-text);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row .field { margin-bottom: 16px; }
.field label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-soft);
}
.field input,
.field select,
.field textarea {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 0.95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-green);
  background: var(--c-surface);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; padding-right: 36px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23555550' fill='none' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px; }

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-text-soft);
}

/* ─── Footer ─── */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-line);
}
.brand--footer { color: var(--c-green); }
.footer__tag {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--c-text-mute);
  max-width: 340px;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__col li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--c-text-mute);
}
.footer__col a {
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--c-green); }

.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--c-text-soft);
}
.footer__base-right { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__base-right a:hover { color: var(--c-green); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */

/* Large tablet / small desktop (1024-1200) */
@media (max-width: 1200px) {
  .nav { gap: 22px; font-size: 0.88rem; }
  .stories__grid { grid-template-columns: repeat(2, 1fr); }
  .story-card--feature { grid-column: 1 / -1; flex-direction: row; }
  .story-card--feature figure { aspect-ratio: auto; flex: 0 0 46%; }
  .story-card--feature .story-card__body { flex: 1; justify-content: center; padding: 28px 32px; }
}

/* Tablet (768-1024) */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .hero__image { aspect-ratio: 5 / 4; }
  .hero__lede { max-width: none; }
  .hero__stats { max-width: none; }

  .about__grid { grid-template-columns: 1.4fr 1fr; gap: 36px; }
  .about__media { max-width: 320px; position: static; top: auto; }
  .about__media figure { aspect-ratio: 4 / 5; }

  .service-row { grid-template-columns: 1fr; gap: 20px; padding: 32px 28px; }
  .service-row__heading { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
  .service-row__top { gap: 12px; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why-card--feature { grid-column: 1 / -1; }
  .why-card--feature h3 { flex-basis: auto; order: 2; flex: 1; }
  .why-card--feature p { flex-basis: 100%; order: 4; }
  .why-card__stat { order: 1; }

  .flow__steps { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
  .flow__steps::before { display: none; }

  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stats-bar .stat { padding: 14px 20px; border-right: 1px solid var(--c-line); }
  .stats-bar .stat:nth-child(2n) { border-right: 0; }
  .stats-bar .stat:nth-child(-n+2) { padding-bottom: 28px; border-bottom: 1px solid var(--c-line); }

  .cta-banner__inner { justify-content: center; text-align: center; gap: 32px; }
  .cta-banner__text { flex: 0 1 auto; }
  .cta-banner__text p { margin-left: auto; margin-right: auto; }
}

/* Small tablet / large mobile (640-768) */
@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .about__media figure { aspect-ratio: 5 / 4; }

  .stories__grid { grid-template-columns: 1fr 1fr; }
  .story-card--feature { grid-column: 1 / -1; flex-direction: row; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .meta-list { grid-template-columns: 1fr 1fr; }
  .meta-list > div:last-child { grid-column: 1 / -1; }
}

/* Mobile (≤640) */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  .announce__inner { padding: 10px 16px; font-size: 0.76rem; gap: 8px; }
  .announce__link { display: inline-block; }

  .site-header__inner { height: 64px; gap: 12px; }
  .brand__sub { display: none; }
  .brand__name { font-size: 0.98rem; letter-spacing: 0.12em; }
  .header-actions { gap: 8px; }
  .lang__toggle { padding: 7px 10px; font-size: 0.74rem; }
  .header-actions .btn--sm { display: none; }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--c-bg);
    flex-direction: column;
    padding: 28px var(--pad-x) 40px;
    gap: 4px;
    font-size: 1.15rem;
    font-weight: 500;
    align-items: stretch;
    border-top: 1px solid var(--c-line);
    overflow-y: auto;
    z-index: 40;
  }
  .nav.is-open a {
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line-soft);
  }

  .hero { padding: 28px 0 48px; }
  .hero__title { font-size: clamp(1.75rem, 7.5vw, 2.2rem); line-height: 1.18; }
  .hero__sub-jp { font-size: 0.8rem; letter-spacing: 0.12em; margin-top: 14px; }
  .eyebrow { margin-bottom: 18px; font-size: 0.7rem; }
  .hero__lede { font-size: 0.96rem; margin: 18px 0 24px; line-height: 1.6; }
  .hero__ctas { gap: 10px; margin-bottom: 32px; }
  .hero__ctas .btn { flex: 1 1 auto; padding: 13px 16px; font-size: 0.88rem; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 20px; }
  .hero__stats > div:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 16px;
    border-top: 1px solid var(--c-line);
  }
  .hero__stats dt { font-size: 1.3rem; }
  .hero__stats dd { font-size: 0.74rem; }
  .hero__visual { max-width: 100%; }
  .hero__image { aspect-ratio: 5 / 4; border-radius: 12px; }
  .hero__badge { bottom: 12px; left: 12px; padding: 9px 13px; border-radius: 6px; }
  .hero__badge-value { font-size: 0.88rem; }
  .hero__badge-label { font-size: 0.62rem; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .section__index { margin-bottom: 14px; gap: 12px; }
  .section__label { padding-left: 24px; font-size: 0.7rem; }
  .section__label::before { width: 16px; }
  .display { font-size: clamp(1.5rem, 6vw, 1.95rem); }

  .about__media { max-width: 100%; }
  .about__media figure { aspect-ratio: 5 / 4; }
  .quote { padding: 16px 0 0 16px; }
  .quote p { font-size: 1rem; }
  .meta-list { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .meta-list > div:last-child { grid-column: auto; }

  .services__list { border-radius: 12px; }
  .service-row { padding: 26px 20px; gap: 16px; }
  .service-row__heading { gap: 10px; }
  .service-row__top { gap: 12px; }
  .service-row__jp { font-size: 1.5rem; }
  .service-row h3 { font-size: 1.1rem; }
  .service-row__body { gap: 18px; }
  .service-row__body > p { font-size: 0.95rem; line-height: 1.6; }
  .service-row__list { grid-template-columns: 1fr; gap: 0; padding-top: 14px; }
  .service-row__list li { padding: 6px 0; font-size: 0.9rem; }

  .why__grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 24px 22px; gap: 12px; }
  .why-card__no { top: 18px; right: 20px; }
  .why-card--feature { flex-direction: column; align-items: flex-start; padding: 28px 22px; gap: 14px; }
  .why-card--feature h3 { font-size: 1.08rem; }
  .why-card__stat { font-size: 2.6rem; }

  .flow__steps { grid-template-columns: 1fr; gap: 12px; }
  .flow__step {
    padding: 20px 22px 22px;
    background: var(--c-surface);
    border: 1px solid var(--c-line-soft);
    border-radius: 10px;
    gap: 10px;
  }
  .flow__indicator { background: transparent; padding-right: 0; margin-left: 0; gap: 12px; }
  .flow__num { width: 44px; height: 44px; font-size: 0.85rem; }
  .flow__icon { display: none; }
  .flow__kanji { margin-top: 2px; font-size: 0.8rem; }
  .flow__step h3 { font-size: 1.02rem; }

  .stories__grid { grid-template-columns: 1fr; gap: 14px; }
  .story-card--feature { flex-direction: column; }
  .story-card--feature figure { aspect-ratio: 4 / 3; flex: none; }
  .story-card--feature .story-card__body { padding: 20px; }
  .story-card__body { padding: 18px 20px; }
  .stories__partners { gap: 16px; margin-top: 40px; padding-top: 24px; }
  .stories__partners ul { gap: 14px 22px; }
  .stories__partners li { font-size: 0.85rem; }

  .stats-bar { padding: 32px 0; }
  .stats-bar .stat__num { font-size: 1.65rem; }
  .stats-bar .stat__label { font-size: 0.72rem; }
  .stats-bar .stat { padding: 10px 12px; }
  .stats-bar .stat:nth-child(-n+2) { padding-bottom: 20px; }

  .cta-banner { padding: 48px 0; }
  .cta-banner__title { font-size: clamp(1.4rem, 5.5vw, 1.7rem); }
  .cta-banner__inner { gap: 24px; }
  .btn--gold { padding: 14px 22px; font-size: 0.92rem; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact__form-title { font-size: 1.15rem; margin-bottom: 20px; }
  .contact__channels { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .contact__channels li span:last-child { font-size: 0.9rem; }
  .contact__form { padding: 24px 20px; border-radius: 12px; }
  .field input, .field select, .field textarea { padding: 11px 12px; font-size: 0.94rem; }

  .footer { padding: 48px 0 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Very small (≤380) */
@media (max-width: 380px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .contact__channels { grid-template-columns: 1fr; }
}
