:root {
  color-scheme: light;
  --primary: #006b30;
  --primary-container: #00873f;
  --secondary: #426c49;
  --tertiary: #a3324d;
  --surface: #f5fbf1;
  --surface-dim: #dde7d8;
  --surface-bright: #f8fcf5;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #eff6eb;
  --surface-container: #e9f0e6;
  --surface-container-high: #e3ebdf;
  --surface-container-highest: #dce5d8;
  --surface-variant: #dbe8d8;
  --outline: #97a995;
  --outline-variant: #bdcabb;
  --on-surface: #171d17;
  --on-surface-variant: #475445;
  --white: #ffffff;
  --shadow-atmospheric: 0 28px 80px rgba(23, 29, 23, 0.08);
  --shadow-float: 0 18px 48px rgba(23, 29, 23, 0.06);
  --max: 1280px;
  --header-height: 86px;
  --display-stack: "Epilogue", "Inter", "PingFang SC", "Noto Sans SC",
    "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --body-stack: "Inter", "PingFang SC", "Noto Sans SC", "Source Han Sans SC",
    "Microsoft YaHei", sans-serif;
  --zh-stack: "PingFang SC", "Noto Sans SC", "Source Han Sans SC",
    "Microsoft YaHei", sans-serif;

  /* Legacy aliases used by the original domestic CSS. */
  --green: var(--primary);
  --green-deep: var(--primary);
  --green-dark: #12311e;
  --green-soft: var(--primary-container);
  --mint: var(--surface-container);
  --ink: var(--on-surface);
  --muted: var(--on-surface-variant);
  --gold: #f5ae00;
  --line: rgba(0, 107, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--surface);
}

:where(h1, h2, h3, section)[id] {
  scroll-margin-top: calc(var(--header-height) + 32px);
}

html body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 107, 48, 0.14), transparent 34rem),
    radial-gradient(circle at 100% 18%, rgba(163, 50, 77, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--surface) 0%, #f8fcf5 42%, var(--surface) 100%);
  color: var(--on-surface);
  font-family: var(--body-stack);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 45;
  height: calc(var(--header-height) + 32px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 251, 241, 0.88) 0%, rgba(245, 251, 241, 0.68) 58%, rgba(245, 251, 241, 0) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, transparent 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  width: min(var(--max), calc(100vw - 2rem));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-float);
  color: var(--on-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 64px rgba(23, 29, 23, 0.09);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: auto;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 107, 48, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--zh-stack);
  font-size: 15px;
  font-weight: 750;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: var(--on-surface-variant);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  outline: 0;
}

.site-nav a.is-active {
  background: rgba(0, 107, 48, 0.1);
  color: var(--primary);
}

.nav-cta {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-float);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  border-radius: 10px;
  background: var(--surface-container);
  color: var(--on-surface);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(3) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  margin-top: -24px;
}

.visual-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 4rem);
  overflow: hidden;
  padding: clamp(4.25rem, 6vw, 5.75rem) max(1rem, calc((100vw - var(--max)) / 2))
    clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 107, 48, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 32%, rgba(163, 50, 77, 0.1), transparent 26rem),
    var(--surface);
  color: var(--on-surface);
  isolation: isolate;
}

.visual-hero::before {
  content: "";
  position: absolute;
  top: clamp(4.35rem, 7vw, 5.75rem);
  right: max(1rem, calc((100vw - var(--max)) / 2));
  z-index: -1;
  width: min(45vw, 570px);
  aspect-ratio: 4 / 5;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 107, 48, 0.18)),
    var(--hero-image) var(--hero-position, center) / cover no-repeat;
  box-shadow: var(--shadow-atmospheric);
}

.visual-hero::after {
  content: "FOODISM";
  position: absolute;
  right: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: -0.13em;
  z-index: -2;
  color: rgba(0, 107, 48, 0.065);
  font-family: var(--display-stack);
  font-size: clamp(4.4rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.hero-home {
  --hero-image: url("assets/foodism/foodism-page-01.webp");
  --hero-position: center 42%;
}

.hero-business {
  --hero-image: url("assets/foodism/foodism-page-02.webp");
}

.hero-creators {
  --hero-image: url("assets/foodism/foodism-page-03.webp");
}

.hero-ai {
  --hero-image: url("assets/foodism/foodism-page-04.webp");
}

.hero-cases {
  --hero-image: url("assets/foodism/foodism-page-05.webp");
}

.hero-about {
  --hero-image: url("assets/foodism/foodism-page-06.webp");
}

.hero-contact {
  --hero-image: url("assets/foodism/foodism-page-07.webp");
}

.hero-geo {
  --hero-image: url("assets/foodism/foodism-page-08.webp");
  --hero-position: center 47%;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: min(700px, 58vw);
}

.chapter-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.62rem 0.86rem;
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body h1,
body h2,
body h3,
body p {
  overflow-wrap: anywhere;
}

body h1,
body h2,
body h3 {
  margin: 0;
  color: var(--on-surface);
  font-family: var(--zh-stack);
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

body h1 {
  max-width: 11em;
  font-size: clamp(2.8rem, 4.8vw, 3.65rem);
  line-height: 1.03;
}

body h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
}

body h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.hero-line {
  max-width: 35em;
  margin: 26px 0 0;
  color: var(--on-surface-variant);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-family: var(--zh-stack);
  font-weight: 820;
  line-height: 1.2;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.button-light {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--white);
  box-shadow: var(--shadow-float);
}

.button-line {
  background: rgba(220, 229, 216, 0.92);
  color: var(--on-surface);
}

.hero-proof-row,
.telemetry-rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(820px, 100%);
  margin-top: 34px;
}

.hero-proof-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-proof-row div,
.telemetry-rail div {
  min-width: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-proof-row span,
.route-lane span,
.stage-line span,
.editorial-label {
  display: block;
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-row strong {
  display: block;
  margin-top: 7px;
  color: var(--on-surface);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.42;
}

.telemetry-rail {
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 1050px);
  margin-top: clamp(3rem, 9vw, 6rem);
}

.telemetry-rail dt {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: clamp(2.1rem, 3.6vw, 3.35rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.telemetry-rail dd {
  margin: 10px 0 0;
  color: var(--on-surface-variant);
  font-size: 14px;
  line-height: 1.5;
}

.statement-band,
.proof-panorama,
.runway-section,
.stage-runway,
.image-led-section,
.overseas-strip,
.signal-count,
.salon-spread,
.method-ribbon,
.radar-loop,
.outcome-band,
.merchant-wall-section,
.company-mosaic,
.mission-facts,
.contact-dock,
.supply-chain-section,
.creator-wall-section,
.training-proof,
.merchant-voices-section,
.official-contact,
.geo-system,
.geo-selling-points {
  padding: clamp(4.5rem, 8vw, 7rem) max(1rem, calc((100vw - var(--max)) / 2));
}

.statement-band,
.stage-runway,
.radar-loop,
.merchant-wall-section,
.method-ribbon,
.mission-facts,
.supply-chain-section,
.creator-wall-section,
.merchant-voices-section,
.geo-selling-points {
  background: transparent;
}

.statement-inner,
.section-head {
  max-width: 860px;
}

.statement-inner {
  border-radius: 34px;
  background: var(--surface-container-lowest);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-atmospheric);
}

.statement-inner p:last-child,
.section-head p:last-child,
.image-led-copy p,
.signal-copy p,
.launch-copy p:not(.chapter-mark) {
  max-width: 42em;
  margin: 20px 0 0;
  color: var(--on-surface-variant);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.78;
}

.section-head {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.proof-panorama,
.overseas-strip,
.salon-spread,
.company-mosaic,
.training-proof,
.geo-system {
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 107, 48, 0.08), transparent 24rem),
    var(--surface-container-low);
}

.proof-panorama .section-head {
  max-width: 1000px;
}

figure {
  margin: 0;
}

.proof-spread {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.1rem, 2.2vw, 1.7rem);
  align-items: start;
}

.wide-proof,
.real-proof,
.merchant-wall,
.overseas-images figure,
.salon-images figure,
.mosaic-grid figure,
.radar-visual,
.talent-images figure {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-container-lowest);
  box-shadow: var(--shadow-atmospheric);
}

.wide-proof img,
.real-proof img,
.merchant-wall img,
.overseas-images img,
.salon-images img,
.mosaic-grid img,
.radar-visual img,
.talent-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-proof img {
  min-height: 530px;
}

.proof-stack {
  display: grid;
  gap: 24px;
}

.real-proof {
  min-height: 0;
}

.proof-spread .real-proof {
  padding: clamp(0.75rem, 1.4vw, 1.1rem);
}

.proof-spread .real-proof img {
  height: auto;
  max-height: clamp(220px, 28vw, 360px);
  border-radius: 20px;
  object-fit: contain;
}

figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.merchant-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
  padding: clamp(1rem, 2vw, 1.4rem);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-atmospheric);
  list-style: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.merchant-masonry-large {
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
}

.merchant-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-container-lowest);
  box-shadow: 0 10px 30px rgba(23, 29, 23, 0.04);
}

.merchant-logo-tile img {
  width: 100%;
  aspect-ratio: 424 / 228;
  object-fit: contain;
  padding: 8px;
  mix-blend-mode: multiply;
}

.route-rail,
.stage-lines {
  display: grid;
  gap: 14px;
}

.route-lane,
.stage-line {
  display: grid;
  align-items: start;
  gap: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-float);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.route-lane {
  grid-template-columns: 170px minmax(260px, 0.78fr) minmax(0, 1fr);
}

.stage-line {
  grid-template-columns: 210px minmax(280px, 0.76fr) minmax(0, 1fr);
}

a.route-lane:hover,
a.route-lane:focus-visible {
  background: var(--surface-container-lowest);
  box-shadow: var(--shadow-atmospheric);
  transform: translateY(-2px);
  outline: 0;
}

.route-lane strong,
.stage-line strong {
  color: var(--on-surface);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.22;
}

.route-lane p,
.stage-line p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 16px;
  line-height: 1.78;
}

.launch-window {
  min-height: 430px;
  display: flex;
  align-items: center;
  margin: clamp(1rem, 4vw, 3rem) max(1rem, calc((100vw - var(--max)) / 2));
  border-radius: 36px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(18, 49, 30, 0.94), rgba(0, 107, 48, 0.72)),
    url("assets/foodism/foodism-page-contact-visual.webp") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow-atmospheric);
}

.launch-copy {
  max-width: 650px;
}

.launch-window h2,
.launch-window .chapter-mark {
  color: var(--white);
}

.launch-window .chapter-mark {
  background: rgba(255, 255, 255, 0.12);
}

.launch-copy p:not(.chapter-mark) {
  color: rgba(255, 255, 255, 0.78);
}

.image-led-section,
.signal-count,
.contact-dock {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--surface-container);
}

.certification-wall {
  display: grid;
  gap: 18px;
}

.certification-wall img {
  width: 100%;
  height: clamp(300px, 28vw, 390px);
  object-fit: contain;
  border-radius: 28px;
  background: var(--surface-container-lowest);
  padding: clamp(0.9rem, 2vw, 1.4rem);
  box-shadow: var(--shadow-atmospheric);
}

.overseas-images,
.salon-images,
.mosaic-grid {
  display: grid;
  gap: 22px;
}

.overseas-images {
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 0.56fr);
  align-items: end;
}

.overseas-images figure:first-child {
  height: 560px;
}

.overseas-images figure:last-child {
  height: 390px;
}

.signal-number {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
}

.salon-images {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.salon-images figure:first-child {
  height: 560px;
}

.salon-images figure:nth-child(2) {
  height: 440px;
  margin-top: 92px;
}

.salon-images figure:nth-child(3) {
  height: 390px;
}

.salon-images figure:nth-child(4) {
  height: 460px;
}

.method-words,
.outcome-words {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.method-words span,
.outcome-words span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--surface-container-low);
  padding: 0.9rem 1.2rem;
  color: var(--primary);
  font-family: var(--zh-stack);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}

.method-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.method-points article {
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  box-shadow: var(--shadow-float);
}

.method-points article > span {
  display: block;
  margin-bottom: 18px;
  color: var(--tertiary);
  font-family: var(--display-stack);
  font-weight: 900;
}

.method-points p {
  margin: 14px 0 0;
  color: var(--on-surface-variant);
  font-size: 16px;
}

.radar-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.88fr) minmax(0, 0.82fr);
  gap: 22px;
  align-items: center;
}

.radar-list {
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  box-shadow: var(--shadow-float);
}

.radar-list h3 {
  color: var(--primary);
}

.radar-list ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: var(--on-surface-variant);
  font-size: 16px;
}

.radar-list li {
  border-radius: 14px;
  background: var(--surface-container-low);
  padding: 12px 14px;
}

.radar-visual {
  max-height: 720px;
}

.merchant-wall-section {
  background: transparent;
}

.mosaic-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.mosaic-grid figure {
  height: 330px;
  min-height: 0;
}

.mosaic-grid figure:first-child {
  grid-row: span 2;
  height: 690px;
  min-height: 0;
}

.mosaic-grid figure:nth-child(2),
.mosaic-grid figure:nth-child(3) {
  height: 330px;
  min-height: 0;
}

.fact-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
}

.fact-lines div {
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  box-shadow: var(--shadow-float);
}

.fact-lines dt {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.05;
}

.fact-lines dd {
  margin: 10px 0 0;
  color: var(--on-surface-variant);
}

.talent-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.talent-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.talent-images figure {
  min-height: 360px;
}

.branch-network-card,
.official-contact,
.geo-brand-card,
.supply-layout,
.creator-wall,
.training-content-card,
.merchant-voice-card,
.geo-capability-grid article {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-atmospheric);
}

.branch-network-card {
  display: grid;
  gap: 18px;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.branch-network-row {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  margin-top: 24px;
}

.branch-network-row .network-card-head {
  grid-column: 1 / -1;
}

.network-card-head {
  padding: 10px 8px 0;
}

.network-card-head h3 {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.network-card-head p {
  margin: 12px 0 0;
  color: var(--on-surface-variant);
  font-size: 15px;
  line-height: 1.7;
}

.office-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-container-lowest);
}

.office-carousel-track {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 260px;
}

.office-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.office-slide.is-active {
  opacity: 1;
}

.office-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-carousel-controls {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 8px;
  align-items: center;
  padding: 10px;
}

.office-carousel-controls button,
.creator-filter button {
  border: 0;
  border-radius: 999px;
  background: var(--surface-container);
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
}

.office-carousel-controls button {
  width: 42px;
  height: 42px;
  font-size: 24px;
  line-height: 1;
}

.office-carousel-controls span {
  min-width: 0;
  color: var(--on-surface-variant);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.branch-map {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-container-lowest);
  padding: clamp(0.75rem, 2vw, 1rem);
}

.branch-map img {
  width: 100%;
  aspect-ratio: 1309 / 1000;
  object-fit: contain;
}

.branch-map-markers {
  position: absolute;
  inset: clamp(0.75rem, 2vw, 1rem);
  pointer-events: none;
}

.branch-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  transform: translate(-50%, -50%);
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}

.branch-marker::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--tertiary);
  box-shadow: 0 0 0 6px rgba(163, 50, 77, 0.16);
}

.branch-marker:hover::before,
.branch-marker:focus-visible::before,
.branch-marker.is-active::before {
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(0, 107, 48, 0.18);
}

.branch-marker:focus-visible {
  outline: 2px solid rgba(0, 107, 48, 0.4);
  outline-offset: 8px;
}

.branch-marker span {
  position: absolute;
  left: 12px;
  top: -8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 3px 7px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(23, 29, 23, 0.08);
}

.branch-marker.is-active span {
  background: var(--primary);
  color: var(--white);
}

.supply-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
}

.supply-metrics div {
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  box-shadow: var(--shadow-float);
}

.supply-metrics dt {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.supply-metrics dd {
  margin: 12px 0 0;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.supply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  padding: clamp(1rem, 2vw, 1.25rem);
}

.supply-copy {
  display: grid;
  gap: 14px;
}

.supply-copy article {
  border-radius: 22px;
  background: var(--surface-container-low);
  padding: 22px;
}

.supply-copy span,
.geo-capability-grid span {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.supply-copy h3,
.geo-capability-grid h3 {
  margin-top: 12px;
  font-size: clamp(1.2rem, 2vw, 1.58rem);
}

.supply-copy p,
.geo-capability-grid p,
.merchant-voice-card p {
  margin: 12px 0 0;
  color: var(--on-surface-variant);
  line-height: 1.72;
}

.supply-gallery,
.training-photo-grid,
.merchant-voices-grid,
.geo-capability-grid {
  display: grid;
  gap: 14px;
}

.supply-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.supply-gallery figure,
.training-photo-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-container-lowest);
}

.supply-gallery img,
.training-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supply-gallery figure {
  aspect-ratio: 1 / 1.12;
}

.creator-wall {
  padding: clamp(1rem, 2vw, 1.25rem);
}

.creator-wall-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.creator-filter {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.creator-filter button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.creator-filter button.is-active {
  background: var(--primary);
  color: var(--white);
}

.creator-expand {
  display: flex;
  width: fit-content;
  margin: 18px auto 0;
}

.creator-expand[hidden] {
  display: none;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
  gap: 14px;
}

.creator-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--surface-container-lowest);
  box-shadow: var(--shadow-float);
}

.creator-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.creator-card div {
  padding: 14px;
}

.creator-card span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.creator-card h3 {
  margin-top: 4px;
  font-size: 1.06rem;
}

.creator-card p {
  margin: 6px 0 0;
  color: var(--on-surface-variant);
  font-size: 13px;
  line-height: 1.45;
}

.salon-mini-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.salon-mini-grid figure,
.salon-mini-grid figure:first-child,
.salon-mini-grid figure:nth-child(2),
.salon-mini-grid figure:nth-child(3),
.salon-mini-grid figure:nth-child(4) {
  height: auto;
  margin-top: 0;
  aspect-ratio: 4 / 3;
}

.training-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.training-content-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--surface-container-lowest);
}

.training-content-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.training-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.training-photo-grid figure {
  aspect-ratio: 9 / 14;
  box-shadow: var(--shadow-float);
}

.merchant-voices-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.merchant-voice-card {
  padding: 24px;
}

.merchant-voice-card p {
  margin-top: 0;
  color: var(--on-surface);
  font-size: 16px;
}

.merchant-voice-card div {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.merchant-voice-card strong {
  color: var(--primary);
}

.merchant-voice-card span {
  color: var(--on-surface-variant);
  font-size: 13px;
}

.official-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
}

.official-contact-copy p:not(.chapter-mark) {
  max-width: 42em;
  margin: 18px 0 0;
  color: var(--on-surface-variant);
}

.contact-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
}

.contact-lines div {
  border-radius: 18px;
  background: var(--surface-container-low);
  padding: 16px;
}

.contact-lines dt {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.contact-lines dd {
  margin: 8px 0 0;
  color: var(--on-surface);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.qr-card {
  position: relative;
  display: grid;
  justify-items: center;
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  box-shadow: var(--shadow-float);
}

.qr-card img {
  width: min(100%, 264px);
  border-radius: 18px;
}

.qr-card figcaption {
  position: static;
  max-width: 100%;
  margin-top: 14px;
  background: var(--surface-container);
}

.geo-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  min-height: 280px;
}

.geo-brand-card img {
  width: min(100%, 620px);
  max-height: 180px;
  object-fit: contain;
}

.geo-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.geo-capability-grid article {
  padding: 22px;
}

.phone-line h2 {
  color: var(--primary);
  font-family: var(--display-stack);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-lines {
  border-radius: 24px;
  background: var(--surface-container-lowest);
  padding: 24px;
  color: var(--on-surface-variant);
  font-size: 18px;
  box-shadow: var(--shadow-float);
}

.legal-lines p {
  margin: 0 0 10px;
}

.legal-lines a {
  color: var(--primary);
  font-weight: 800;
}

.site-footer {
  width: min(var(--max), calc(100vw - 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin: 0 auto 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
  box-shadow: var(--shadow-float);
  color: var(--on-surface-variant);
  font-size: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-footer p {
  margin: 0 0 4px;
}

.site-footer a {
  color: var(--primary);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1100px) {
  .site-header {
    width: min(100% - 1.5rem, var(--max));
  }

  .site-nav {
    gap: 0;
    font-size: 14px;
  }

  .site-nav a {
    padding: 0 10px;
  }

  .hero-copy {
    max-width: 64vw;
  }

  .route-lane,
  .stage-line,
  .radar-columns,
  .proof-spread,
  .branch-network-row,
  .image-led-section,
  .signal-count,
  .contact-dock,
  .talent-layout,
  .supply-layout,
  .training-layout,
  .official-contact {
    grid-template-columns: 1fr;
  }

  .visual-hero::before {
    width: min(40vw, 430px);
    opacity: 0.62;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    top: 10px;
    min-height: 64px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 20px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    right: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    gap: 6px;
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 24px;
    background: rgba(239, 246, 235, 0.96);
    box-shadow: var(--shadow-atmospheric);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 0 14px;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center !important;
  }

  main {
    margin-top: -18px;
  }

  .visual-hero {
    min-height: auto;
    padding-top: 3.4rem;
    padding-bottom: 19rem;
  }

  .visual-hero::before {
    top: auto;
    right: 1rem;
    left: 1rem;
    bottom: 2rem;
    width: auto;
    height: 250px;
    aspect-ratio: auto;
    border-radius: 24px;
    opacity: 0.92;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-proof-row,
  .telemetry-rail,
  .method-points,
  .fact-lines,
  .supply-metrics,
  .geo-capability-grid,
  .contact-lines,
  .overseas-images,
  .salon-images,
  .mosaic-grid,
  .talent-images {
    grid-template-columns: 1fr;
  }

  .stage-line,
  .route-lane {
    gap: 14px;
  }

  .route-lane p,
  .stage-line p {
    max-width: 760px;
  }

  .overseas-images figure:first-child,
  .overseas-images figure:last-child,
  .salon-images figure:first-child,
  .salon-images figure:nth-child(2),
  .salon-images figure:nth-child(3),
  .salon-images figure:nth-child(4),
  .mosaic-grid figure:first-child,
  .mosaic-grid figure:nth-child(2),
  .mosaic-grid figure:nth-child(3),
  .talent-images figure {
    height: auto;
    min-height: 0;
    margin-top: 0;
  }

  .overseas-images figure,
  .salon-images figure,
  .mosaic-grid figure,
  .mosaic-grid figure:first-child,
  .mosaic-grid figure:nth-child(2),
  .mosaic-grid figure:nth-child(3),
  .talent-images figure {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .overseas-images figure:last-child {
    aspect-ratio: 16 / 9;
  }

  .supply-gallery,
  .training-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-wall-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .creator-expand {
    width: 100%;
  }

  .branch-marker span {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .visual-hero {
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 18rem;
  }

  .visual-hero::after {
    left: 1rem;
    right: auto;
    font-size: 4.2rem;
  }

  body h1 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    line-height: 1.08;
  }

  body h2 {
    font-size: clamp(1.78rem, 7.6vw, 2.2rem);
    line-height: 1.14;
  }

  h3 {
    font-size: 1.35rem;
  }

  .hero-line {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-proof-row,
  .telemetry-rail {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .statement-band,
  .proof-panorama,
  .runway-section,
  .stage-runway,
  .image-led-section,
  .overseas-strip,
  .signal-count,
  .salon-spread,
  .method-ribbon,
  .radar-loop,
  .outcome-band,
  .merchant-wall-section,
  .company-mosaic,
  .mission-facts,
  .contact-dock,
  .supply-chain-section,
  .creator-wall-section,
  .training-proof,
  .merchant-voices-section,
  .official-contact,
  .geo-system,
  .geo-selling-points {
    padding: 4rem 1rem;
  }

  .statement-inner,
  .route-lane,
  .stage-line,
  .method-points article,
  .radar-list,
  .fact-lines div,
  .legal-lines,
  .branch-network-card,
  .official-contact,
  .supply-layout,
  .creator-wall,
  .merchant-voice-card,
  .geo-capability-grid article {
    border-radius: 20px;
    padding: 20px;
  }

  .launch-window {
    min-height: 360px;
    margin: 1rem;
    border-radius: 24px;
    padding: 2rem 1.25rem;
  }

  .proof-spread,
  .proof-stack,
  .salon-images,
  .overseas-images,
  .mosaic-grid,
  .method-points,
  .talent-images,
  .supply-gallery,
  .training-photo-grid,
  .merchant-voices-grid,
  .geo-capability-grid {
    gap: 14px;
  }

  .merchant-masonry,
  .merchant-masonry-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-radius: 20px;
  }

  .merchant-logo-tile {
    border-radius: 12px;
  }

  .geo-brand-card {
    margin-top: 54px;
    min-height: 180px;
    padding: 24px;
  }

  .geo-brand-card img {
    width: min(100%, 280px);
    max-height: 104px;
  }

  .signal-number {
    font-size: 4.4rem;
  }

  .certification-wall img {
    height: 260px;
    padding: 0.8rem;
  }

  .visual-hero::before {
    height: 225px;
  }

  .method-words,
  .outcome-words {
    display: grid;
    gap: 10px;
  }

  .method-words span,
  .outcome-words span {
    justify-content: center;
    font-size: 1.7rem;
  }

  .site-footer {
    width: calc(100% - 2rem);
    grid-template-columns: 1fr;
    margin-bottom: 1rem;
    border-radius: 22px;
    padding: 22px;
  }

  .supply-metrics,
  .contact-lines,
  .geo-capability-grid {
    grid-template-columns: 1fr;
  }

  .supply-gallery,
  .training-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-carousel-track {
    min-height: 220px;
  }

  .office-carousel-controls {
    grid-template-columns: 38px 1fr 38px;
  }

  .office-carousel-controls button {
    width: 38px;
    height: 38px;
  }

  .branch-map-markers {
    transform: translateY(clamp(28px, 9.0vw, 40px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
