/*
 * UCDA-inspired trust and future layer.
 * Remove this stylesheet link to restore the preceding visual system.
 */

:root {
  --ink: #171916;
  --muted: rgba(23, 25, 22, 0.72);
  --paper: #ffffff;
  --surface: #ffffff;
  --line: rgba(23, 25, 22, 0.18);
  --red: #c9443b;
  --red-dark: #8f1d21;
  --red-soft: rgba(201, 68, 59, 0.075);
  --gold: #9c6a00;
  --gold-accent: #d69a00;
  --gold-light: #ffd24a;
  --green-info: #28684c;
  --green-soft: rgba(40, 104, 76, 0.07);
  --leaf: #28684c;
  --leaf-deep: #245f46;
  --leaf-bright: #91c9a8;
  --trust-black: #171916;
  --trust-white: #ffffff;
  --trust-shadow: 0 12px 34px rgba(23, 25, 22, 0.10);
  --trust-shadow-hover: 0 16px 38px rgba(23, 25, 22, 0.14);
  --intro-duration: 2500ms;
}

html {
  color-scheme: light;
  scroll-padding-top: 84px;
  scrollbar-gutter: stable;
}

body {
  color: var(--trust-black);
  background: var(--trust-white);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0;
}

body.has-intro {
  overflow: hidden;
}

body::before {
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 1;
}

.site-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--trust-white);
  animation: intro-loader-exit var(--intro-duration) linear forwards;
}

.intro-stage {
  position: relative;
  width: clamp(168px, 28vw, 230px);
  aspect-ratio: 644 / 720;
  overflow: visible;
}

.intro-motion {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.intro-motion {
  z-index: 3;
  overflow: visible;
}

.intro-bowl-logo {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: inset(46% 0 0 0);
}

.intro-motion path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.intro-noodle-lift {
  animation: intro-noodle-lift var(--intro-duration) cubic-bezier(0.2, 0.72, 0.24, 1) forwards;
}

.intro-noodle-lift path {
  stroke: var(--gold-accent);
  stroke-width: 5;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: intro-noodle-draw var(--intro-duration) ease-out forwards;
}

.intro-chopsticks {
  animation: intro-chopstick-lift var(--intro-duration) cubic-bezier(0.2, 0.72, 0.24, 1) forwards;
}

.intro-flag-frame {
  opacity: 0;
  animation: intro-flag-arrive var(--intro-duration) ease-out forwards;
}

.intro-flag-frame path {
  stroke: var(--trust-black);
  stroke-width: 4;
  stroke-dasharray: 850;
  stroke-dashoffset: 850;
  animation: intro-flag-draw var(--intro-duration) ease-out forwards;
}

.intro-flag-frame .intro-flag-top {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: none;
}

.intro-chopsticks path {
  stroke: var(--trust-black);
  stroke-width: 6;
}

.intro-sun-wipe {
  position: absolute;
  z-index: 4;
  top: 29.86%;
  left: 50%;
  width: 21.43%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45);
  transform-origin: center;
  will-change: transform, opacity;
  animation: intro-sun-expand var(--intro-duration) cubic-bezier(0.68, 0, 0.32, 1) forwards;
}

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

body.has-intro .site-header,
body.has-intro main,
body.has-intro .site-footer {
  animation: intro-page-reveal var(--intro-duration) ease-out both;
}

::selection {
  color: var(--trust-white);
  background: var(--red-dark);
}

a,
button {
  -webkit-tap-highlight-color: rgba(214, 154, 0, 0.22);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-accent);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  z-index: 130;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.5);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--green-info) 0 24%,
    var(--gold-accent) 24% 72%,
    var(--red) 72% 100%
  );
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  transition: transform 90ms linear;
}

.site-header {
  min-height: 60px;
  border: 1px solid rgba(23, 25, 22, 0.16);
  border-top: 3px solid var(--red);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 8px 26px rgba(23, 25, 22, 0.10),
    0 0 22px rgba(214, 154, 0, 0.08);
  backdrop-filter: blur(18px) saturate(110%);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-header::before {
  display: none;
}

.site-header.is-scrolled {
  border-color: rgba(23, 25, 22, 0.24);
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--trust-shadow);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -1px;
  width: min(220px, 24vw);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  animation: trust-header-scan 7s ease-in-out infinite;
}

.brand-mark {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand-type {
  color: var(--green-info);
  font-weight: 600;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 2px;
  color: var(--green-info);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.site-nav a::after {
  bottom: 3px;
  height: 2px;
  background: var(--gold-accent);
}

.site-nav a:hover,
.site-nav a[aria-current="location"] {
  color: var(--red-dark);
}

.site-nav a[aria-current="location"] {
  font-weight: 700;
}

.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border-color: rgba(23, 25, 22, 0.24);
  color: var(--green-info);
  background: var(--trust-white);
}

.menu-toggle:hover {
  color: var(--red-dark);
  border-color: var(--red);
}

.language-switcher {
  position: relative;
  z-index: 12;
  flex: 0 0 auto;
}

.language-toggle {
  min-width: 106px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  padding: 7px 11px;
  color: var(--trust-white);
  background:
    linear-gradient(90deg, var(--gold-accent) 0 3px, transparent 3px),
    var(--red);
  border: 1px solid var(--red-dark);
  border-radius: 3px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
  color: var(--trust-white);
  border-color: var(--gold-accent);
  background:
    linear-gradient(90deg, var(--gold-light) 0 3px, transparent 3px),
    var(--red-dark);
  box-shadow:
    0 0 0 1px rgba(201, 68, 59, 0.24),
    0 0 18px rgba(201, 68, 59, 0.20);
}

.language-label {
  color: var(--trust-white);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.language-code {
  min-width: 24px;
  color: var(--trust-white);
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--trust-white);
  border-bottom: 1px solid var(--trust-white);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-toggle[aria-expanded="true"] .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 184px;
  padding: 6px;
  border: 1px solid var(--gold);
  border-top: 3px solid var(--red);
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.055) 1px, transparent 1px),
    var(--gold-light);
  background-size: 22px 22px;
  box-shadow:
    0 18px 42px rgba(23, 25, 22, 0.18),
    0 0 28px rgba(214, 154, 0, 0.11);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  min-height: 44px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  color: var(--trust-black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}

.language-menu button:last-child {
  border-bottom: 0;
}

.language-menu button:hover,
.language-menu button[aria-checked="true"] {
  color: var(--trust-black);
  background: var(--trust-white);
}

.language-menu button[aria-checked="true"] {
  box-shadow: inset 3px 0 var(--red);
}

.language-menu small {
  color: var(--red-dark);
  font-size: 10px;
  font-weight: 700;
}

.hero {
  background: var(--trust-black);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 96px max(18px, var(--content-pad)) 30px;
  pointer-events: none;
  background:
    linear-gradient(var(--gold-light), var(--gold-light)) left top / 72px 1px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) left top / 1px 72px no-repeat,
    linear-gradient(var(--red), var(--red)) right top / 72px 1px no-repeat,
    linear-gradient(var(--red), var(--red)) right top / 1px 72px no-repeat,
    linear-gradient(var(--green-info), var(--green-info)) left bottom / 72px 1px no-repeat,
    linear-gradient(var(--green-info), var(--green-info)) left bottom / 1px 72px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) right bottom / 72px 1px no-repeat,
    linear-gradient(var(--gold-light), var(--gold-light)) right bottom / 1px 72px no-repeat;
  opacity: 0.56;
  filter: drop-shadow(0 0 6px rgba(255, 210, 74, 0.36));
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 25, 22, 0.92) 0%, rgba(23, 25, 22, 0.72) 36%, rgba(23, 25, 22, 0.20) 68%, rgba(23, 25, 22, 0.04) 100%),
    linear-gradient(0deg, rgba(23, 25, 22, 0.50), transparent 48%);
}

.hero-shade::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: -12%;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0 8%,
    var(--green-info) 24%,
    var(--gold-light) 50%,
    var(--red) 76%,
    transparent 92% 100%
  );
  box-shadow:
    0 0 8px rgba(255, 210, 74, 0.54),
    0 0 20px rgba(40, 104, 76, 0.34);
  opacity: 0.74;
  animation: trust-vertical-scan 7.5s linear infinite;
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 7px,
      rgba(255, 255, 255, 0.055) 7px 8px
    ),
    linear-gradient(
      105deg,
      transparent 0 46%,
      rgba(255, 210, 74, 0.18) 49%,
      transparent 52% 100%
    );
  background-size: auto, 220% 100%;
  animation: trust-hero-sweep 12s ease-in-out infinite;
}

.hero-content {
  --hero-nihon-width: calc(var(--hero-title-width) * 0.216667);
  padding-left: 0;
  border-left: 0;
}

.hero-content::after {
  display: none;
}

h1 > span {
  font-size: calc(var(--hero-nihon-width) / 6);
}

.hero-association-en,
.statement-kicker,
.eyebrow,
.en-small,
.statement-en,
.vm-label,
[lang="en"] {
  color: var(--gold) !important;
  font-weight: 700;
}

.hero-association-en,
.hero .en-small,
.story-section .eyebrow,
.story-section .en-small,
.feature .eyebrow,
.feature .en-small,
.feature-list small,
.contact .eyebrow,
.contact .en-small,
.site-footer [lang="en"] {
  color: var(--gold-light) !important;
}

.hero-actions {
  gap: 12px;
}

.button {
  min-height: 46px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--trust-white);
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 8px 20px rgba(143, 29, 33, 0.22);
}

.button.primary:hover {
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--trust-white);
  background: rgba(23, 25, 22, 0.42);
  border-color: rgba(255, 255, 255, 0.78);
}

.hero::after {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red) 0 72px,
    var(--gold-accent) 72px 144px,
    var(--green-info) 144px 216px,
    rgba(255, 255, 255, 0.42) 216px
  );
}

.hero-statement,
.vision-section,
.map-section,
.sponsor-section,
.backing-section,
.join,
.category-directory {
  background-color: var(--trust-white);
}

.hero-statement {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px),
    var(--trust-white);
  background-size: 72px 72px;
}

.hero-statement-heading {
  border-left-color: var(--red);
}

.hero-statement-heading p,
h2,
h3 {
  color: var(--trust-black);
}

.hero-statement-copy > p:first-child,
.section-lead,
.intro-copy,
.vision-copy p:not(.eyebrow),
.vision-mission-grid p,
.activity-grid p,
.join-grid p {
  color: rgba(23, 25, 22, 0.76);
}

.section {
  border-color: var(--line);
}

.section-heading {
  max-width: 900px;
  padding-left: 26px;
}

.section-heading::before {
  width: 3px;
  background: linear-gradient(
    var(--red) 0 38%,
    var(--gold-accent) 38% 68%,
    var(--green-info) 68% 100%
  );
}

.section-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
  box-shadow: 0 0 10px rgba(214, 154, 0, 0.34);
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700 !important;
  line-height: 1.4;
}

.en-small,
.statement-en {
  font-size: 13px;
  font-weight: 300 !important;
  line-height: 1.7;
}

h2 {
  max-width: 28em;
  font-weight: 500;
  line-height: 1.35;
}

h3 {
  line-height: 1.5;
}

.section-lead,
.intro-copy p,
.story-copy p,
.feature-text > p,
.contact p {
  max-width: 72ch;
}

.vision-section {
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px),
    var(--trust-white);
  background-size: 72px 72px;
}

.vision-mission-grid article,
.activity-grid article,
.join-grid article,
.logo-card,
.japan-map,
.shop-preview,
.chaos-board {
  border-color: rgba(23, 25, 22, 0.18);
  border-radius: 4px;
  background-color: var(--trust-white);
  box-shadow: 0 6px 18px rgba(23, 25, 22, 0.055);
}

.vision-mission-grid article,
.activity-grid article,
.join-grid article,
.logo-card {
  position: relative;
  overflow: hidden;
}

.vision-mission-grid article::before,
.activity-grid article::before,
.join-grid article::before,
.logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0 34%,
    var(--gold-accent) 34% 68%,
    var(--green-info) 68% 100%
  );
}

.vision-mission-grid article::after,
.activity-grid article::after,
.join-grid article::after,
.logo-card::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 9px;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-top: 1px solid var(--gold-accent);
  border-right: 1px solid var(--gold-accent);
  opacity: 0.72;
}

.vision-mission-grid article:hover,
.activity-grid article:hover,
.join-grid article:hover,
.logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 104, 76, 0.42);
  box-shadow: var(--trust-shadow-hover);
}

.vm-number {
  color: rgba(143, 29, 33, 0.10);
}

/* Purpose, vision, and mission form one continuous declaration. */
.hero-statement {
  isolation: isolate;
  color: var(--trust-white);
  border-top: 1px solid rgba(255, 210, 74, 0.24);
  border-bottom: 1px solid rgba(255, 210, 74, 0.34);
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.065) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(118deg, rgba(143, 29, 33, 0.30), transparent 38%),
    var(--trust-black);
  background-size: 56px 56px, 56px 56px, auto, auto;
}

.hero-statement::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -22%;
  width: 22%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 74, 0.13),
    rgba(40, 104, 76, 0.10),
    transparent
  );
  transform: skewX(-12deg);
  animation: trust-purpose-scan 10s ease-in-out infinite;
}

.hero-statement::after {
  content: "PURPOSE";
  right: 24px;
  bottom: -18px;
  color: transparent;
  font-family:
    "IPAexGothic", "IPAexゴシック", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", sans-serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 1px rgba(255, 210, 74, 0.13);
}

.hero-statement-inner {
  min-height: 430px;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 84px;
  max-width: 1360px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.hero-statement-inner::before {
  content: "";
  position: absolute;
  top: 34px;
  left: var(--content-pad);
  right: var(--content-pad);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--red) 0 76px,
    var(--gold-light) 76px 152px,
    var(--green-info) 152px 228px,
    rgba(255, 255, 255, 0.14) 228px
  );
  box-shadow: 0 0 12px rgba(255, 210, 74, 0.24);
}

.hero-statement-heading {
  position: relative;
  padding-left: 34px;
  border-left: 0;
}

.hero-statement-heading::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 7px;
  left: 0;
  width: 4px;
  background: linear-gradient(
    var(--red) 0 46%,
    var(--gold-light) 46% 76%,
    var(--green-info) 76% 100%
  );
  box-shadow:
    0 0 12px rgba(201, 68, 59, 0.38),
    0 0 22px rgba(255, 210, 74, 0.18);
}

.statement-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light) !important;
  font-family:
    "IPAexGothic", "IPAexゴシック", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.statement-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1px solid var(--gold-light);
  background: var(--green-info);
  box-shadow: 0 0 12px rgba(145, 201, 168, 0.68);
  transform: rotate(45deg);
  animation: trust-signal-pulse 2.8s ease-in-out infinite;
}

.hero-statement-heading p {
  max-width: 760px;
  color: var(--trust-white);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(255, 210, 74, 0.08);
}

.hero-statement-copy {
  position: relative;
  padding: 30px 0 30px 34px;
  border-left: 1px solid rgba(255, 210, 74, 0.34);
}

.hero-statement-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(201, 68, 59, 0.62);
}

.hero-statement-copy > p:first-child {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 400;
  line-height: 2;
}

.hero-statement .statement-en {
  max-width: 520px;
  margin-top: 22px;
  color: var(--gold-light) !important;
  font-size: 13.5px;
  line-height: 1.8;
}

.vision-section {
  isolation: isolate;
  padding-top: 92px;
  padding-bottom: 104px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px),
    var(--trust-white);
  background-size: 64px 64px;
}

.vision-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red) 0 34%,
    var(--gold-accent) 34% 67%,
    var(--green-info) 67% 100%
  );
}

.vision-section::after {
  content: "V / M";
  right: 30px;
  bottom: -16px;
  color: rgba(40, 104, 76, 0.055);
  font-family:
    "IPAexGothic", "IPAexゴシック", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", sans-serif;
  font-size: 118px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.vision-copy {
  max-width: 1320px;
  margin: 0 auto;
}

.vision-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
  color: var(--gold) !important;
  font-size: 13px;
}

.vision-copy > .eyebrow::after {
  content: "";
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
  box-shadow: 0 0 10px rgba(214, 154, 0, 0.26);
}

.vision-mission-grid {
  gap: 20px;
  margin-top: 0;
}

.vision-mission-grid article {
  isolation: isolate;
  min-height: 410px;
  padding: 52px;
  border: 1px solid rgba(23, 25, 22, 0.18);
  border-top: 4px solid var(--red);
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(201, 68, 59, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px),
    var(--trust-white);
  background-size: 44px 44px;
  box-shadow:
    0 18px 42px rgba(23, 25, 22, 0.10),
    0 0 0 1px rgba(214, 154, 0, 0.06);
}

.vision-mission-grid article + article {
  color: var(--trust-white);
  border: 1px solid rgba(255, 210, 74, 0.30);
  border-top: 4px solid var(--gold-accent);
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(138deg, var(--red-dark), #a92d30);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow:
    0 20px 48px rgba(143, 29, 33, 0.22),
    0 0 26px rgba(214, 154, 0, 0.12);
}

.vision-mission-grid article::before {
  z-index: 0;
  top: 0;
  left: -48%;
  width: 38%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 68, 59, 0.09),
    transparent
  );
  transform: skewX(-12deg);
  animation: trust-vm-scan 9s ease-in-out infinite;
}

.vision-mission-grid article + article::before {
  animation-delay: -4.5s;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 210, 74, 0.12),
    rgba(40, 104, 76, 0.08),
    transparent
  );
}

.vision-mission-grid article::after {
  top: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  border-top-color: var(--red);
  border-right-color: var(--red);
  opacity: 0.72;
}

.vision-mission-grid article + article::after {
  border-top-color: var(--gold-light);
  border-right-color: var(--gold-light);
}

.vision-mission-grid article > * {
  position: relative;
  z-index: 1;
}

.vision-mission-grid article:hover {
  border-color: rgba(201, 68, 59, 0.62);
  border-top-color: var(--red);
  box-shadow:
    0 22px 52px rgba(23, 25, 22, 0.14),
    0 0 22px rgba(201, 68, 59, 0.08);
}

.vision-mission-grid article + article:hover {
  border-color: rgba(255, 210, 74, 0.52);
  border-top-color: var(--gold-accent);
  box-shadow:
    0 24px 56px rgba(23, 25, 22, 0.22),
    0 0 28px rgba(255, 210, 74, 0.11);
}

.vm-number {
  display: none;
  top: 34px;
  right: 36px;
  color: transparent;
  font-size: 92px;
  font-weight: 700;
  -webkit-text-stroke: 1px rgba(201, 68, 59, 0.24);
}

.vision-mission-grid article + article .vm-number {
  -webkit-text-stroke-color: rgba(255, 210, 74, 0.28);
}

.vm-label {
  gap: 11px;
  margin-bottom: 40px;
  color: var(--red-dark) !important;
  font-size: 13px;
  line-height: 1.4;
}

.vm-label::before {
  width: 8px;
  height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}

.vision-mission-grid article + article .vm-label {
  color: var(--gold-light) !important;
}

.vision-mission-grid article + article .vm-label::before {
  background: var(--green-info);
  box-shadow: 0 0 10px rgba(145, 201, 168, 0.48);
}

.vision-mission-grid h2 {
  max-width: 520px;
  color: var(--trust-black);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.38;
}

.vision-mission-grid article + article h2 {
  color: var(--trust-white);
}

.vision-copy .vision-mission-grid p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(23, 25, 22, 0.74);
  font-size: 14.5px;
  line-height: 1.85;
}

.vision-copy .vision-mission-grid article + article p:not(.eyebrow, .en-small) {
  color: rgba(255, 255, 255, 0.82);
}

.vision-mission-grid .en-small {
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.vision-mission-grid article + article .en-small {
  color: var(--gold-light) !important;
}

.intro {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(40, 104, 76, 0.055) 48% 100%),
    var(--trust-white);
}

.story-section,
.feature,
.site-footer {
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--trust-black);
  background-size: 64px 64px;
}

.story-section,
.feature {
  position: relative;
  overflow: hidden;
}

.story-section::before,
.feature::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 0 42%,
    rgba(255, 210, 74, 0.10) 48%,
    rgba(40, 104, 76, 0.08) 50%,
    transparent 56% 100%
  );
  background-size: 240% 100%;
  animation: trust-dark-sweep 11s ease-in-out infinite;
}

.story-section > *,
.feature > * {
  position: relative;
  z-index: 1;
}

.story-visual {
  border-color: rgba(255, 210, 74, 0.30);
  border-radius: 4px;
}

.story-copy p:not(.eyebrow),
.feature-text p {
  color: rgba(255, 255, 255, 0.84);
}

.activity-grid article,
.join-grid article {
  border-top-width: 1px;
}

.activity-index {
  color: var(--green-info);
  font-size: 13px;
}

.identity-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(214, 154, 0, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.025) 1px, transparent 1px),
    var(--trust-white);
  background-size: 72px 72px;
}

.identity-section::before {
  content: "紋";
  position: absolute;
  z-index: -1;
  top: 88px;
  right: 3%;
  color: rgba(143, 29, 33, 0.035);
  font-family:
    "IPAexMincho", "IPAex明朝", "Hiragino Mincho ProN", "Yu Mincho",
    "YuMincho", serif;
  font-size: 240px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.identity-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(36px, 6vw, 84px);
  margin-top: 42px;
}

.identity-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 34px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  background:
    linear-gradient(90deg, rgba(214, 154, 0, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(40, 104, 76, 0.045) 1px, transparent 1px),
    var(--trust-white);
  background-size: 38px 38px;
}

.identity-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(var(--gold-accent), var(--red), var(--green-info));
}

.identity-kicker {
  margin: 0;
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.identity-visual > .identity-kicker {
  position: absolute;
  top: 20px;
  left: 22px;
}

.identity-mark {
  width: clamp(190px, 54%, 290px);
  height: auto;
}

.identity-wordmark {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 154, 0, 0.45);
}

.identity-wordmark span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold) !important;
  font-size: 10px;
  font-weight: 700;
}

.identity-wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.identity-copy {
  align-self: center;
}

.identity-copy > h3 {
  max-width: 15em;
  margin-top: 10px;
  color: var(--trust-black);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.42;
}

.identity-copy > h3 + p {
  max-width: 43em;
  margin-top: 22px;
  color: rgba(23, 25, 22, 0.78);
  font-size: 15px;
  line-height: 1.95;
}

.identity-copy > .en-small {
  max-width: 48em;
  margin-top: 14px;
}

.identity-symbols {
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.identity-symbols > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.26fr) minmax(0, 1fr);
  gap: 7px 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.identity-symbols dt {
  grid-row: 1 / span 2;
  color: var(--red-dark);
  font-family:
    "IPAexMincho", "IPAex明朝", "Hiragino Mincho ProN", "Yu Mincho",
    "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
}

.identity-symbols dd {
  margin: 0;
  color: rgba(23, 25, 22, 0.76);
  font-size: 14px;
  line-height: 1.75;
}

.identity-en {
  color: var(--gold) !important;
  font-size: 11.5px;
  font-weight: 300 !important;
  line-height: 1.6;
}

.identity-symbols .identity-en {
  grid-column: 2;
}

.edo-history {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  margin-top: 8px;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  color: var(--trust-white);
  border-left: 4px solid var(--red);
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--trust-black);
  background-size: 52px 52px;
}

.edo-history::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--red));
}

.edo-history .identity-kicker,
.edo-history .en-small,
.edo-history .identity-en,
.edo-history .identity-era {
  color: var(--gold-light) !important;
}

.edo-history-heading h3 {
  margin-top: 14px;
  color: var(--trust-white);
  font-size: clamp(27px, 3.3vw, 44px);
  font-weight: 500;
  line-height: 1.45;
}

.edo-history-copy > p:not(.en-small) {
  max-width: 55em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 2;
}

.edo-history-copy > .en-small {
  max-width: 58em;
  margin-top: 14px;
}

.edo-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(255, 210, 74, 0.28);
  border-bottom: 1px solid rgba(255, 210, 74, 0.28);
}

.edo-timeline article {
  min-width: 0;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.edo-timeline article:first-child {
  border-left: 0;
}

.identity-era {
  color: var(--gold-light) !important;
  font-size: 10px;
  font-weight: 700;
}

.edo-timeline h4 {
  margin-top: 7px;
  color: var(--trust-white);
  font-size: 15px;
  font-weight: 600;
}

.edo-timeline p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  line-height: 1.75;
}

.edo-timeline .identity-en {
  display: block;
  margin-top: 8px;
}

.identity-note,
.identity-source {
  grid-column: 1 / -1;
  margin: -14px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--green-info);
  color: var(--green-info);
  font-size: 12px;
  line-height: 1.8;
}

.identity-source {
  margin-top: -22px;
  border-left-color: var(--gold-accent);
  color: rgba(23, 25, 22, 0.66);
}

.identity-source a {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.identity-source a:hover {
  color: var(--red);
}

.map-section {
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.028) 1px, transparent 1px),
    var(--trust-white);
  background-size: 68px 68px;
}

.japan-map {
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 25, 22, 0.035) 1px, transparent 1px),
    var(--trust-white);
  background-size: 52px 52px;
}

.japan-map::before {
  border-color: rgba(214, 154, 0, 0.42);
}

.japan-map::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 30px;
  bottom: 30px;
  left: 12%;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(
    transparent,
    var(--green-info) 22%,
    var(--gold-accent) 50%,
    var(--red) 78%,
    transparent
  );
  box-shadow: 0 0 12px rgba(214, 154, 0, 0.38);
  opacity: 0.54;
  animation: trust-map-scan 8s ease-in-out infinite;
}

.land,
.islet {
  fill: var(--trust-white);
  stroke: var(--green-info);
}

.region-line {
  stroke: rgba(40, 104, 76, 0.52);
}

.map-pins button {
  background: var(--red);
  box-shadow:
    0 0 0 5px rgba(201, 68, 59, 0.14),
    0 0 17px 7px rgba(201, 68, 59, 0.34);
}

.map-pins button[data-featured="true"] {
  animation: trust-pin-pulse 2.4s ease-out infinite;
}

.shop-preview {
  background: rgba(255, 255, 255, 0.98);
}

.shop-visual {
  border: 1px solid rgba(255, 210, 74, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--trust-black);
  background-size: 36px 36px;
}

.map-notes dt,
.shop-preview-note,
.people-grid span,
.logo-card p:not([lang="en"]) {
  color: var(--green-info);
}

.chaos-section,
.sponsor-section,
.backing-section,
.honor-section,
.member-category-section:nth-child(odd),
.member-category-section:nth-child(even),
.join {
  background: var(--trust-white);
}

.chaos-board {
  background:
    linear-gradient(90deg, rgba(40, 104, 76, 0.07) 0 50%, rgba(201, 68, 59, 0.055) 50% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.96), rgba(214, 154, 0, 0.07)),
    var(--trust-white);
}

.axis {
  min-height: 36px;
  color: var(--trust-white);
  background: var(--trust-black);
}

.plot:not(.strong) {
  color: var(--green-info);
  border-color: rgba(40, 104, 76, 0.34);
  background: var(--trust-white);
}

.plot.strong {
  color: var(--trust-white);
  background: var(--red-dark);
}

.logo-card strong {
  font-weight: 600;
}

.logo-card [lang="en"],
.sponsor-section .logo-card strong,
.backing-section .logo-card p {
  color: var(--gold) !important;
}

.logo-card.civic strong,
.logo-card.shop-logo strong {
  border-color: rgba(214, 154, 0, 0.52);
  color: var(--red-dark);
}

.board-section,
.board-section-alt,
.member-section,
.member-category-section {
  background: var(--trust-white);
  border-top-color: var(--line);
}

body main .section {
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(52px, 5vw, 76px);
}

.people-grid article {
  min-height: 72px;
  border-top-color: var(--line);
  transition: none;
}

.people-grid article:hover {
  padding-left: 0;
  background: transparent;
  transform: none;
  box-shadow: none;
}

.people-grid span {
  font-size: 12.5px;
}

.people-grid h3 {
  font-weight: 600;
}

.evangelist-name {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
}

.people-grid .evangelist-socials {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: max-content;
  margin-left: auto;
  padding-left: 12px;
  color: inherit;
  line-height: 1;
}

.people-grid .social-icon {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 17px;
  color: var(--trust-black);
}

.people-grid .social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.people-grid .social-icon path,
.people-grid .social-icon rect,
.people-grid .social-icon circle {
  vector-effect: non-scaling-stroke;
}

.people-grid .social-icon-instagram,
.people-grid .social-icon-youtube {
  color: var(--red-dark);
}

.people-grid .social-icon-tiktok {
  color: var(--green-info);
}

.people-grid .social-icon-x {
  color: var(--trust-black);
}

.people-grid .social-icon .social-icon-dot,
.people-grid .social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.people-grid .social-icon .social-icon-play {
  fill: var(--trust-white);
  stroke: none;
}

.people-grid p {
  color: rgba(23, 25, 22, 0.72);
  font-size: 13.5px;
  line-height: 1.75;
}

.name-list span {
  min-height: 40px;
  color: var(--trust-black);
  border-bottom-color: var(--line);
  font-size: 13px;
}

.feature-list p {
  min-height: 64px;
  border-left-color: var(--red);
  background: rgba(255, 255, 255, 0.07);
}

.feature-list small {
  color: var(--gold-light) !important;
  font-weight: 700;
}

.contact {
  background:
    linear-gradient(90deg, rgba(255, 210, 74, 0.07) 1px, transparent 1px),
    linear-gradient(125deg, var(--red-dark), var(--red));
  background-size: 60px 60px, auto;
}

.contact .button.primary {
  color: var(--red-dark);
  background: var(--trust-white);
  border-color: var(--trust-white);
}

.footer-note {
  color: var(--leaf-bright);
}

.motion-enabled .future-reveal {
  opacity: 0.01;
  transform: translateY(18px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms ease var(--reveal-delay, 0ms);
}

.motion-enabled .future-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes intro-loader-exit {
  0%,
  88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-noodle-lift {
  0%,
  12% {
    opacity: 0;
    transform: translateY(110px);
  }
  18% {
    opacity: 1;
  }
  43% {
    opacity: 1;
    transform: translateY(0);
  }
  57%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes intro-noodle-draw {
  0%,
  14% {
    stroke-dashoffset: 900;
  }
  44%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-chopstick-lift {
  0%,
  12% {
    opacity: 0;
    transform: translateY(160px);
  }
  18% {
    opacity: 1;
  }
  43% {
    opacity: 1;
    transform: translateY(0);
  }
  57%,
  100% {
    opacity: 0;
    transform: translateY(-16px);
  }
}

@keyframes intro-flag-arrive {
  0%,
  27% {
    opacity: 0;
  }
  34%,
  72% {
    opacity: 1;
  }
  84%,
  100% {
    opacity: 0;
  }
}

@keyframes intro-flag-draw {
  0%,
  28% {
    stroke-dashoffset: 850;
  }
  52%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-sun-expand {
  0%,
  48% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }
  54%,
  62% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  84%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(82);
  }
}

@keyframes intro-page-reveal {
  0%,
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes intro-loader-reduced {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-page-reduced {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes trust-header-scan {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-18px);
  }
  50% {
    opacity: 0.95;
    transform: translateX(18px);
  }
}

@keyframes trust-hero-sweep {
  0%,
  100% {
    background-position: 0 0, 120% 0;
  }
  50% {
    background-position: 0 0, -120% 0;
  }
}

@keyframes trust-vertical-scan {
  0% {
    top: -12%;
  }
  100% {
    top: 112%;
  }
}

@keyframes trust-map-scan {
  0%,
  100% {
    left: 10%;
    opacity: 0.26;
  }
  50% {
    left: 90%;
    opacity: 0.72;
  }
}

@keyframes trust-dark-sweep {
  0%,
  100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -130% 0;
  }
}

@keyframes trust-purpose-scan {
  0%,
  14% {
    left: -24%;
    opacity: 0;
  }
  36%,
  56% {
    opacity: 0.78;
  }
  78%,
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes trust-vm-scan {
  0%,
  18% {
    left: -48%;
    opacity: 0;
  }
  38%,
  58% {
    opacity: 0.78;
  }
  82%,
  100% {
    left: 116%;
    opacity: 0;
  }
}

@keyframes trust-signal-pulse {
  0%,
  100% {
    opacity: 0.58;
    box-shadow: 0 0 5px rgba(145, 201, 168, 0.32);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(145, 201, 168, 0.72);
  }
}

@keyframes trust-pin-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(201, 68, 59, 0.14),
      0 0 17px 7px rgba(201, 68, 59, 0.30);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(214, 154, 0, 0.18),
      0 0 25px 10px rgba(201, 68, 59, 0.44);
  }
}

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-statement-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 44px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-statement-heading p {
    font-size: 38px;
  }

  .hero-statement-copy {
    max-width: 680px;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .vision-mission-grid article {
    min-height: 350px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .intro-stage {
    width: min(54vw, 190px);
  }

  body {
    font-size: 15px;
    line-height: 1.75;
  }

  .site-header {
    min-height: 60px;
    align-items: center;
    padding: 6px 8px;
  }

  .site-header::after {
    right: 8px;
    width: 120px;
  }

  .brand {
    display: grid;
    grid-template-columns: clamp(50px, 14vw, 58px) minmax(0, 1fr);
    grid-template-rows: 42px 11px;
    align-items: center;
    width: calc(100% - 62px);
    max-width: calc(100% - 62px);
    min-height: 58px;
    flex: 0 1 calc(100% - 62px);
    margin-right: auto;
    row-gap: 5px;
    column-gap: clamp(8px, 2vw, 12px);
  }

  .brand-mark {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 40px;
    height: 42px;
    flex-basis: 40px;
    padding: 2px;
  }

  .brand-copy {
    display: contents;
  }

  .brand-type {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: center;
    width: max-content;
    font-size: clamp(7px, 1.8vw, 8.5px);
    line-height: 1;
    white-space: nowrap;
  }

  .brand-name {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-name img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 8px;
    left: auto;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    z-index: 2;
    transform: translateY(-50%);
  }

  .language-switcher {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .language-toggle {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }

  .site-nav {
    margin-top: 6px;
    padding: 8px 0;
  }

  .site-nav a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero::before {
    inset: 84px 12px 22px;
    background-size:
      38px 1px,
      1px 38px,
      38px 1px,
      1px 38px,
      38px 1px,
      1px 38px,
      38px 1px,
      1px 38px;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-statement::after,
  .vision-section::after {
    display: none;
  }

  .hero-statement-inner {
    gap: 36px;
    padding: 66px 20px 62px;
  }

  .hero-statement-inner::before {
    top: 25px;
    left: 20px;
    right: 20px;
  }

  .hero-statement-heading {
    padding-left: 22px;
  }

  .hero-statement-heading p {
    font-size: 28px;
    line-height: 1.55;
  }

  .hero-statement-copy {
    padding: 24px 0 8px 22px;
  }

  .hero-statement-copy > p:first-child {
    font-size: 15px;
  }

  .vision-section {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .vision-copy > .eyebrow {
    margin-bottom: 22px;
  }

  .vision-copy > .eyebrow::after {
    width: 76px;
  }

  .vision-mission-grid {
    gap: 14px;
  }

  .vision-mission-grid article {
    min-height: 0;
    padding: 34px 24px 38px;
  }

  .vm-number {
    top: 26px;
    right: 24px;
    font-size: 58px;
  }

  .vm-label {
    margin-bottom: 30px;
  }

  .vision-mission-grid h2 {
    padding-right: 18px;
    font-size: 28px;
    line-height: 1.45;
  }

  .section-heading {
    padding-left: 20px;
  }

  .eyebrow,
  .en-small,
  .statement-en {
    font-size: 12.5px;
  }

  .role-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .identity-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .identity-visual {
    min-height: 0;
  }

  .identity-mark {
    width: min(250px, 52vw);
  }

  .edo-history {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .identity-section::before {
    top: 130px;
    right: -12px;
    font-size: 150px;
  }

  .identity-layout {
    margin-top: 32px;
  }

  .identity-visual {
    gap: 26px;
    padding: 54px 22px 28px;
  }

  .identity-symbols > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .identity-symbols dt,
  .identity-symbols .identity-en {
    grid-column: 1;
    grid-row: auto;
  }

  .edo-history {
    padding: 32px 24px;
  }

  .edo-history-heading h3 br {
    display: none;
  }

  .edo-timeline {
    grid-template-columns: 1fr;
  }

  .edo-timeline article {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .edo-timeline article:first-child {
    border-top: 0;
  }

  .identity-note,
  .identity-source {
    margin-top: -6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    animation: intro-loader-reduced 280ms ease-out forwards;
  }

  .site-loader .intro-stage {
    display: none;
  }

  body.has-intro .site-header,
  body.has-intro main,
  body.has-intro .site-footer {
    animation: intro-page-reduced 280ms ease-out both;
  }

  .scroll-progress span {
    transition: none;
  }

  .site-header::after,
  .hero-shade::before,
  .hero-shade::after,
  .hero-statement::before,
  .statement-kicker::before,
  .vision-mission-grid article::before,
  .japan-map::after,
  .story-section::before,
  .feature::before,
  .map-pins button[data-featured="true"] {
    animation: none;
  }

  .motion-enabled .future-reveal,
  .motion-enabled .future-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final association typography: Japanese / English */
:root {
  --font-japanese:
    "Kozuka Gothic Pr6N R", "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N R",
    "KozGoPr6N-Regular", "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif;
  --font-english:
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-title-japanese:
    "IPAexMincho", "IPAex明朝", "Hiragino Mincho ProN", "Yu Mincho",
    "YuMincho", serif;
}

html[lang="ja"] body,
html[lang="ja"] body * {
  font-family: var(--font-japanese);
}

html[lang="ja"] .brand-type,
html[lang="ja"] .hero-content h1 > span {
  font-family: var(--font-title-japanese) !important;
}

html[lang="ja"] :where(
  [lang="en"],
  .site-nav a,
  .hero-association-en,
  .statement-kicker,
  .statement-en,
  .eyebrow,
  .en-small,
  .vm-label,
  .identity-kicker,
  .identity-en,
  .identity-era,
  .language-label,
  .language-code
) {
  font-family: var(--font-english) !important;
}

html[lang="ja"] .hero-statement::after,
html[lang="ja"] .vision-section::after {
  font-family: var(--font-english) !important;
}

html[lang="ja"] .identity-section::before {
  font-family: var(--font-japanese) !important;
}

html[lang="en"] body,
html[lang="en"] body * {
  font-family: var(--font-english);
}

html[lang="zh-CN"] body,
html[lang="zh-CN"] body * {
  font-family:
    "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", sans-serif;
}

html[lang="ko"] body,
html[lang="ko"] body * {
  font-family:
    "Apple SD Gothic Neo", "Noto Sans CJK KR", sans-serif;
}

/* Custom header navigation owns the interpolation while it is running. */
html.nav-scrolling {
  scroll-behavior: auto !important;
}

@media (max-width: 760px) {
  .name-list-vertical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }

  .name-list-vertical span {
    padding: 9px 0;
    font-size: 11.5px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }
}
