@font-face {
  font-family: "Outfit";
  src: url("./vendor/outfit-latin-variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111218;
  --ink-2: #22242d;
  --paper: #f7faff;
  --paper-2: #eaf2ff;
  --white: #ffffff;
  --blue: #2674ff;
  --blue-deep: #124bb8;
  --blue-pale: #dbe9ff;
  --acid: #d9ff64;
  --orange: #ff7a45;
  --mint: #aee0d2;
  --line: rgba(17, 18, 24, .16);
  --line-light: rgba(255, 255, 255, .18);
  --display: "Cabinet Grotesk", "Outfit", "Pretendard Variable", Pretendard, sans-serif;
  --body: "Pretendard Variable", Pretendard, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-CN"] body,
html[lang="th"] body { word-break: normal; }

body.menu-open { overflow: hidden; }

main {
  width: 100%;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

::selection { color: var(--white); background: var(--blue); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 11px 0 14px;
  color: var(--ink);
  border: 1px solid rgba(38, 116, 255, .16);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 45px rgba(28, 78, 156, .08);
  backdrop-filter: blur(18px) saturate(130%);
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(17, 18, 24, .1);
  background: rgba(255, 255, 255, .94);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.brand > img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.brand > span {
  display: flex;
  gap: 4px;
  align-items: baseline;
  font-family: var(--display);
  letter-spacing: .08em;
}

.brand strong { font-size: 13px; font-weight: 800; }
.brand small { font-size: 9px; font-weight: 600; opacity: .62; }

.site-nav {
  display: flex;
  gap: clamp(17px, 2.1vw, 34px);
  align-items: center;
  font-size: 12px;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) { position: relative; }

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-menu { position: relative; font-family: var(--display); }

.language-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 56px;
  padding: 8px 9px;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .74;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] { opacity: 1; }
.language-toggle i { font-style: normal; transition: transform .25s var(--ease); }
.language-toggle[aria-expanded="true"] i { transform: rotate(180deg); }

.language-options {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 190px;
  padding: 7px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(250, 248, 243, .98);
  box-shadow: 0 18px 50px rgba(17, 18, 24, .17);
  backdrop-filter: blur(16px);
}

.language-options[hidden] { display: none; }
.language-options:not([hidden]) { display: grid; }

.language-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  color: #777986;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  text-align: left;
}

.language-options button span { font-size: 9px; letter-spacing: .08em; }
.language-options button:hover { color: var(--ink); background: var(--paper-2); }
.language-options button.is-active { color: var(--white); background: var(--blue); }

.nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--blue);
}

.is-scrolled .nav-cta { color: var(--white); background: var(--blue-deep); }
.menu-toggle { display: none; }

.eyebrow,
.service-moment,
.principle-index,
.contact-index,
.footer-label {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  gap: 34px;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: color .28s ease, background .28s ease, border-color .28s ease, transform .18s ease;
}

.button b { font-size: 16px; font-weight: 500; }
.button--primary { color: var(--white); background: var(--blue); }
.button--primary:hover { color: var(--white); background: var(--blue-deep); }
.button--ghost { color: var(--ink); border-color: rgba(17, 18, 24, .28); background: rgba(255, 255, 255, .68); }
.button--ghost:hover { color: var(--blue-deep); border-color: var(--blue); background: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--blue); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: var(--acid); }
.button--outline-light { color: var(--white); border-color: rgba(255, 255, 255, .4); }
.button--outline-light:hover { color: var(--ink); border-color: var(--acid); background: var(--acid); }

.hero {
  position: relative;
  min-height: 900px;
  height: 100svh;
  max-height: 1080px;
  padding: 126px 5vw 46px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 18%, rgba(38, 116, 255, .18), transparent 35%),
    radial-gradient(circle at 10% 78%, rgba(100, 234, 210, .16), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 62%, #edf5ff 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(38,116,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,116,255,.11) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(38,116,255,.13);
  border-radius: 50%;
}

.hero-orbit--one { width: 680px; height: 680px; top: 160px; left: calc(50% - 340px); }
.hero-orbit--two { width: 1060px; height: 1060px; top: -30px; left: calc(50% - 530px); }

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 1110px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow { color: var(--blue-deep); }

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(56px, 6.4vw, 104px);
  font-weight: 750;
  line-height: .95;
  letter-spacing: -.055em;
}

.hero-description {
  max-width: 610px;
  margin: 24px auto 0;
  color: rgba(17,18,24,.63);
  font-size: clamp(15px, 1.15vw, 18px);
}

.hero-actions { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }

.product-stage {
  position: relative;
  z-index: 3;
  width: min(1120px, 90vw);
  height: 390px;
  margin: 36px auto 0;
  perspective: 1400px;
}

.stage-card {
  position: absolute;
  aspect-ratio: 2.067 / 1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: #101117;
  box-shadow: 0 38px 90px rgba(0,0,0,.38);
  transition: transform .7s var(--ease), filter .7s var(--ease), opacity .5s ease;
}

.stage-card:hover {
  z-index: 6;
  filter: brightness(1.06);
}

.stage-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stage-product-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,11,17,.78);
  backdrop-filter: blur(12px);
}

.stage-product-label b { font-size: 10px; }
.stage-product-label small { font-family: var(--display); font-size: 7px; letter-spacing: .12em; opacity: .58; }

.stage-card--dasoni {
  z-index: 2;
  bottom: 6px;
  left: -2%;
  width: 45%;
  transform: rotate(-4deg);
}

.stage-card--dasoni:hover { transform: translate3d(8px,-10px,72px) rotate(-1deg); }

.stage-card--space {
  z-index: 3;
  top: 0;
  left: 25%;
  width: 50%;
  transform: translateZ(28px) rotate(.5deg);
}

.stage-card--space:hover { transform: translate3d(0,-10px,92px) rotate(0); }

.stage-card--onharu {
  z-index: 2;
  right: -2%;
  bottom: 2px;
  width: 43%;
  transform: rotate(4deg);
}

.stage-card--onharu:hover { transform: translate3d(-8px,-10px,72px) rotate(1deg); }

.hero-scroll {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 30px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: rgba(17,18,24,.55);
  font-size: 10px;
}

.hero-scroll i { position: relative; width: 32px; height: 1px; background: rgba(17,18,24,.4); }
.hero-scroll i::after { position: absolute; top: -2px; right: 0; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; content: ""; transform: rotate(45deg); }

.service-marquee { overflow: hidden; color: var(--white); border-top: 1px solid rgba(255,255,255,.18); background: var(--blue); }
.service-marquee__track { display: flex; width: max-content; align-items: center; padding: 18px 0; animation: marquee 28s linear infinite; }
.service-marquee span { margin: 0 23px; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: .13em; }
.service-marquee i { width: 5px; height: 5px; border-radius: 50%; background: #87f0dd; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services { padding: 104px 5.2vw 112px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 7vw; align-items: end; max-width: 1440px; margin: 0 auto 48px; }
.section-heading h2,
.principles-intro h2,
.story-heading h2,
.statement h2,
.contact-heading h2,
.closing h2,
.moments h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -.052em;
}
.section-heading > p { max-width: 500px; margin: 0 0 6px; color: #61636c; font-size: 15px; }

.service-bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  transition: grid-template-columns .75s var(--ease);
}

.service-bento.focus-dasoni { grid-template-columns: 1.45fr .775fr .775fr; }
.service-bento.focus-space { grid-template-columns: .775fr 1.45fr .775fr; }
.service-bento.focus-onharu { grid-template-columns: .775fr .775fr 1.45fr; }

.service-card {
  position: relative;
  min-width: 0;
  height: 670px;
  padding: 26px 28px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  outline: none;
  transition: background .5s var(--ease), color .5s var(--ease);
}

.service-card--onharu {
  color: var(--white);
  background: #071424;
}

.service-number { position: absolute; top: 27px; right: 28px; font-family: var(--display); font-size: 11px; letter-spacing: .12em; opacity: .52; }
.service-brand { display: flex; gap: 10px; align-items: center; }
.service-brand .service-icon { flex: 0 0 auto; width: 40px; height: 40px; object-fit: contain; }
.service-icon--dasoni,
.service-icon--sinaspace { border-radius: 9px; }
.service-brand p { margin: 0; font-size: 13px; font-weight: 800; }
.service-brand p span { display: block; margin-top: 1px; color: #747681; font-family: var(--display); font-size: 8px; letter-spacing: .12em; }

.service-copy { position: relative; z-index: 3; max-width: 540px; margin-top: 54px; }
.service-moment { margin-bottom: 16px; color: #656772; letter-spacing: .04em; text-transform: none; }
.service-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 2.7vw, 46px); font-weight: 730; line-height: 1.08; letter-spacing: -.045em; }
.service-copy > p:not(.service-moment) { max-width: 470px; margin: 22px 0 0; color: #63656e; font-size: 14px; }
.product-link { display: inline-flex; gap: 54px; align-items: center; margin-top: 27px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 750; }
.product-link i { font-style: normal; }

.service-visual {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: auto;
  width: calc(100% - 48px);
  max-width: 520px;
  aspect-ratio: 2.067 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17,18,24,.18);
  border-radius: 4px;
  background: #11131a;
  box-shadow: 0 24px 55px rgba(17,18,24,.2);
  pointer-events: none;
  transform: translateY(0) scale(1);
  transition: transform .75s var(--ease), opacity .5s ease, filter .6s ease;
}

.service-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .8s var(--ease);
}

.service-card.is-active .service-visual img,
.service-card:hover .service-visual img { transform: scale(1.035); }
.service-card:not(.is-active) .service-visual { opacity: .56; filter: saturate(.75); transform: translateY(22px) scale(.94); }

.service-card--dasoni { background: #e4e3ff; }

.service-card--space { color: var(--white); background: #14151b; }
.service-card--space .service-brand p span,
.service-card--onharu .service-brand p span { color: rgba(255,255,255,.48); }
.service-card--space .service-moment,
.service-card--onharu .service-moment { color: rgba(255,255,255,.6); }
.service-card--space .service-copy > p:not(.service-moment),
.service-card--onharu .service-copy > p:not(.service-moment) { color: rgba(255,255,255,.62); }
.service-card--space .service-visual,
.service-card--onharu .service-visual { border-color: rgba(255,255,255,.16); box-shadow: 0 26px 60px rgba(0,0,0,.38); }

.moments { padding: 96px 5.2vw; color: var(--ink); background: var(--paper-2); }
.moments > .eyebrow,
.moments > h2,
.moment-line { max-width: 1440px; margin-right: auto; margin-left: auto; }
.moments > .eyebrow { color: var(--blue-deep); }
.moments h2 { max-width: 1130px; }
.moment-line { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid rgba(38,116,255,.24); border-left: 1px solid rgba(38,116,255,.24); }
.moment-line a { position: relative; display: grid; min-height: 190px; padding: 22px; border-right: 1px solid rgba(38,116,255,.24); border-bottom: 1px solid rgba(38,116,255,.24); transition: color .3s, background .3s; }
.moment-line a:hover { color: var(--white); background: var(--blue); }
.moment-line span { font-family: var(--display); font-size: 10px; opacity: .55; }
.moment-line strong { align-self: end; font-size: clamp(18px, 1.8vw, 26px); }
.moment-line small { margin-top: 3px; opacity: .56; }

.principles { display: grid; grid-template-columns: 5fr 7fr; gap: 7vw; max-width: 1440px; margin: 0 auto; padding: 110px 5.2vw; }
.principles-intro { align-self: start; max-width: 500px; }
.principles-intro > p:last-child { max-width: 420px; margin: 25px 0 0; color: #656770; font-size: 15px; }
.principles-list { display: grid; gap: 10px; }
.principle-card { position: relative; min-height: 510px; padding: 35px; overflow: hidden; border: 1px solid var(--ink); background: var(--white); }
.principle-card h3 { margin: 92px 0 0; font-family: var(--display); font-size: clamp(34px, 3.7vw, 56px); line-height: 1.02; letter-spacing: -.05em; }
.principle-card > p:not(.principle-index) { max-width: 470px; margin: 22px 0 0; color: #62646c; font-size: 14px; }
.principle-card--dark { color: var(--white); background: var(--ink); }
.principle-card--dark > p:not(.principle-index) { color: rgba(255,255,255,.58); }
.principle-card--accent { background: var(--orange); }

.observe-map { position: absolute; right: 34px; bottom: 35px; left: 34px; display: flex; align-items: center; }
.observe-map span { font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.observe-map i { flex: 1; height: 1px; margin: 0 13px; background: var(--ink); }
.observe-map i::after { float: right; width: 7px; height: 7px; margin-top: -3px; border-radius: 50%; background: var(--blue); content: ""; }
.make-steps { position: absolute; right: 35px; bottom: 35px; left: 35px; display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; height: 72px; align-items: end; }
.make-steps i { display: block; background: var(--blue); }
.make-steps i:nth-child(1) { height: 28%; opacity: .35; }.make-steps i:nth-child(2) { height: 48%; opacity: .52; }.make-steps i:nth-child(3) { height: 72%; opacity: .74; }.make-steps i:nth-child(4) { height: 100%; background: var(--acid); }
.improve-meter { position: absolute; right: 35px; bottom: 35px; left: 35px; display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.improve-meter span { height: 11px; background: rgba(17,18,24,.18); }
.improve-meter span:nth-child(-n+4) { background: var(--ink); }

.story { padding: 106px 5.2vw 114px; border-top: 1px solid var(--line); background: var(--paper-2); }
.story-heading { display: grid; grid-template-columns: 1.4fr .6fr; column-gap: 6vw; max-width: 1440px; margin: 0 auto 52px; }
.story-heading .eyebrow { grid-column: 1 / -1; }
.story-heading > p:last-child { align-self: end; max-width: 440px; margin: 0 0 6px; color: #62646d; font-size: 14px; }
.story-timeline { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1440px; margin: 0 auto; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.story-timeline article { min-height: 240px; padding: 22px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.story-timeline article.is-now { color: var(--white); background: var(--blue); }
.story-timeline span { font-family: var(--display); font-size: 9px; letter-spacing: .1em; opacity: .55; }
.story-timeline h3 { margin: 74px 0 7px; font-family: var(--display); font-size: clamp(19px, 2vw, 28px); line-height: 1; }
.story-timeline p { margin: 0; color: #666872; font-size: 12px; }
.story-timeline .is-now p { color: rgba(255,255,255,.65); }

.statement { position: relative; min-height: 670px; padding: 126px 5.2vw; overflow: hidden; color: var(--white); background: #24254c; }
.statement .eyebrow,
.statement h2,
.statement > p:not(.eyebrow) { position: relative; z-index: 3; max-width: 1440px; margin-right: auto; margin-left: auto; }
.statement .eyebrow { color: rgba(255,255,255,.48); }
.statement h2 { max-width: 1000px; margin-left: max(0px, calc((100vw - 1440px) / 2)); }
.statement > p:not(.eyebrow) { max-width: 510px; margin-top: 27px; margin-left: max(0px, calc((100vw - 1440px) / 2)); color: rgba(255,255,255,.6); }
.statement-orbit { position: absolute; right: 3vw; bottom: -210px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.statement-orbit::before,
.statement-orbit::after { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.statement-orbit::before { inset: 85px; }.statement-orbit::after { inset: 175px; }
.statement-orbit .statement-core { position: absolute; top: calc(50% - 55px); left: calc(50% - 55px); width: 110px; height: 110px; object-fit: contain; }
.statement-service { position: absolute; display: flex; gap: 11px; align-items: center; min-width: 176px; padding: 10px 14px 10px 10px; color: var(--ink); border: 1px solid rgba(255,255,255,.48); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 16px 45px rgba(10,15,35,.24); animation: service-float 5.5s ease-in-out infinite; }
.statement-service > img { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 10px; object-fit: contain; }
.statement-service > span { display: grid; gap: 2px; font-family: Satoshi, var(--display); line-height: 1; }
.statement-service strong { font-size: 13px; letter-spacing: -.02em; }
.statement-service small { color: #747681; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.statement-service--dasoni { top: 30px; right: 42px; }
.statement-service--sinaspace { top: 190px; right: -18px; animation-delay: -1.8s; }
.statement-service--onharu { top: 342px; left: 76px; animation-delay: -3.6s; }
@keyframes service-float { 50% { transform: translateY(-8px); } }

.contact-hub { padding: 106px 5.2vw 114px; background: var(--paper); }
.contact-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 7vw; align-items: end; max-width: 1440px; margin: 0 auto 48px; }
.contact-heading > p { max-width: 470px; margin: 0 0 5px; color: #62646d; }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; max-width: 1440px; margin: 0 auto; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.contact-grid > article { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.location-map { height: 320px; overflow: hidden; border-bottom: 1px solid var(--ink); background: #d7d4cd; filter: grayscale(1) contrast(.88); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-content { padding: 28px; }
.contact-index { color: #767983; }
.location-content h3,
.inquiry-intro h3 { margin: 0; font-family: var(--display); font-size: clamp(28px, 2.8vw, 42px); line-height: 1.04; letter-spacing: -.045em; }
.location-content address { margin-top: 20px; color: #5e6069; font-style: normal; }
.location-meta { display: grid; grid-template-columns: 1fr 1.3fr; gap: 14px; margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.location-meta div { display: grid; gap: 4px; }
.location-meta dt { color: #7e8088; font-size: 10px; }
.location-meta dd { margin: 0; font-family: var(--display); font-size: 13px; }
.map-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.map-links a { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; }

.inquiry-card { display: grid; grid-template-columns: .78fr 1.22fr; gap: 30px; padding: 30px; background: var(--white); }
.inquiry-intro > p:last-child { margin: 22px 0 0; color: #696b73; font-size: 13px; }
.inquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px; align-content: start; }
.form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.form-field { display: grid; gap: 7px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field label,
.form-field > label { color: #666872; font-size: 10px; font-weight: 700; }
.form-field label span { color: var(--blue); }
.form-field input,
.form-field textarea { width: 100%; padding: 10px 0; color: var(--ink); border: 0; border-bottom: 1px solid #a8a9ae; outline: 0; background: transparent; font-size: 13px; transition: border-color .2s; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--blue); }
.privacy-check { display: flex; gap: 8px; align-items: flex-start; cursor: pointer; }
.privacy-check input { width: 15px; height: 15px; margin: 2px 0 0; accent-color: var(--blue); }
.privacy-check span { color: #686a72; font-size: 10px; }
.privacy-check a { border-bottom: 1px solid currentColor; }
.privacy-check em { color: var(--blue); font-style: normal; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 2px; }
.form-submit .button { flex: 0 0 auto; }
.form-submit button:disabled { cursor: wait; opacity: .55; }
.form-status { min-height: 18px; margin: 0; font-size: 10px; }
.form-status.is-success { color: #167052; }.form-status.is-error { color: #b53c31; }

.closing { padding: 112px 5.2vw; color: var(--white); text-align: center; background: var(--blue); }
.closing .eyebrow { color: rgba(255,255,255,.55); }
.closing h2 { max-width: 1000px; margin: 0 auto; }
.closing > p:not(.eyebrow) { margin: 22px 0 0; color: rgba(255,255,255,.68); }
.closing-actions { display: flex; gap: 8px; justify-content: center; margin-top: 29px; }

.site-footer { padding: 54px 5.2vw 28px; color: var(--white); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1.35fr 1fr .8fr; gap: 4vw; max-width: 1440px; margin: 0 auto; }
.brand--footer { width: max-content; }
.footer-brand > p { margin: 18px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-info { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; font-size: 11px; }
.footer-label { margin-bottom: 9px; color: rgba(255,255,255,.38); font-size: 9px; }
.footer-info address { color: rgba(255,255,255,.62); font-style: normal; }
.footer-info > a { color: rgba(255,255,255,.7); }
.footer-info > a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; max-width: 1440px; margin: 48px auto 0; padding-top: 18px; color: rgba(255,255,255,.33); border-top: 1px solid rgba(255,255,255,.11); font-family: var(--display); font-size: 8px; letter-spacing: .1em; }

@media (max-width: 1180px) {
  .site-nav { gap: 14px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 840px; }
  .product-stage { height: 340px; }
  .stage-card--dasoni { width: 44%; }
  .stage-card--space { left: 24%; width: 52%; }
  .stage-card--onharu { width: 42%; }
  .service-card { height: 650px; }
  .service-copy h3 { font-size: clamp(27px, 2.8vw, 40px); }
  .principles { gap: 4vw; }
  .inquiry-card { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-info:nth-child(5) { grid-column: 2 / 3; }
}

@media (max-width: 820px) {
  .site-header { top: 9px; right: 9px; left: 9px; height: 58px; }
  .site-nav { position: fixed; top: 0; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; gap: 0; align-items: stretch; justify-content: center; padding: 88px 22px 30px; color: var(--ink); background: var(--paper); }
  .menu-open .site-nav { display: flex; }
  .site-nav > a:not(.nav-cta) { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 25px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .language-menu { margin: 24px 0 12px; }
  .language-toggle { width: 100%; height: 44px; }
  .language-options { position: static; width: 100%; margin-top: 7px; box-shadow: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { position: relative; z-index: 2; display: flex; gap: 9px; align-items: center; padding: 8px 2px 8px 10px; color: inherit; border: 0; background: transparent; cursor: pointer; font-size: 10px; }
  .menu-toggle i,
  .menu-toggle i::before { display: block; width: 21px; height: 1px; background: currentColor; transition: transform .25s; content: ""; }
  .menu-toggle i::before { transform: translateY(-5px); }
  .menu-open .menu-toggle i { transform: rotate(45deg); }
  .menu-open .menu-toggle i::before { transform: rotate(-90deg); }
  .menu-open .site-header { color: var(--ink); background: transparent; border-color: transparent; backdrop-filter: none; }

  .hero { min-height: 790px; height: auto; padding: 105px 20px 34px; }
  .hero h1 { font-size: clamp(48px, 12vw, 72px); }
  .hero-description { max-width: 510px; }
  .hero-orbit--one { width: 520px; height: 520px; left: calc(50% - 260px); }
  .hero-orbit--two { display: none; }
  .product-stage { width: 100%; height: 300px; margin-top: 32px; }
  .stage-card--dasoni { left: -12%; width: 53%; }
  .stage-card--space { left: 21%; width: 62%; }
  .stage-card--onharu { right: -13%; width: 51%; }
  .hero-scroll { display: none; }

  .services,
  .moments,
  .story,
  .contact-hub { padding: 82px 22px; }
  .section-heading,
  .contact-heading,
  .story-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading > p,
  .contact-heading > p,
  .story-heading > p:last-child { max-width: 580px; }
  .service-bento,
  .service-bento.focus-dasoni,
  .service-bento.focus-space,
  .service-bento.focus-onharu { grid-template-columns: 1fr; }
  .service-card { height: 640px; }
  .service-visual { right: 28px; width: calc(100% - 56px); }
  .moment-line { grid-template-columns: 1fr; }
  .moment-line a { min-height: 145px; }
  .principles { grid-template-columns: 1fr; padding: 82px 22px; }
  .principles-intro { max-width: 620px; }
  .principle-card { min-height: 460px; }
  .story-timeline { grid-template-columns: 1fr 1fr; }
  .statement { min-height: auto; padding: 92px 22px; }
  .statement-orbit { position: relative; right: auto; bottom: auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; width: 100%; height: auto; margin: 72px auto 0; border: 0; border-radius: 0; animation: none; }
  .statement-orbit::before,
  .statement-orbit::after,
  .statement-orbit .statement-core { display: none; }
  .statement-service { position: static; min-width: 0; padding-right: 10px; animation: none; }
  .statement-service > span { min-width: 0; }
  .statement-service strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .location-map { height: 290px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-info:nth-child(5) { grid-column: auto; }
}

@media (max-width: 560px) {
  .brand > span { display: none; }
  .menu-toggle { display: flex !important; margin-left: auto; }
  .hero { min-height: 760px; }
  .hero .eyebrow { font-size: 8px; letter-spacing: .08em; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1; letter-spacing: -.065em; }
  .hero-description { font-size: 13px; overflow-wrap: anywhere; }
  html[lang="en"] .hero h1,
  html[lang="vi"] .hero h1,
  html[lang="th"] .hero h1 { font-size: clamp(34px, 9.8vw, 43px); }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; gap: 10px; padding: 0 13px; font-size: 11px; }
  .product-stage { height: 278px; }
  .stage-card--dasoni { left: -34%; width: 75%; opacity: .82; }
  .stage-card--space { left: 8%; width: 84%; }
  .stage-card--onharu { right: -35%; width: 74%; opacity: .84; }
  .stage-product-label { right: 7px; bottom: 7px; padding: 6px 7px; }
  .stage-product-label small { display: none; }
  .service-marquee__track { padding: 14px 0; }
  .service-marquee span { margin: 0 18px; font-size: 11px; }
  .services,
  .moments,
  .story,
  .contact-hub { padding: 68px 16px; }
  .section-heading h2,
  .principles-intro h2,
  .story-heading h2,
  .statement h2,
  .contact-heading h2,
  .closing h2,
  .moments h2 { font-size: clamp(37px, 10.5vw, 53px); }
  .service-card { height: 590px; padding: 22px 20px; }
  .service-copy { margin-top: 44px; }
  .service-copy h3 { font-size: 29px; }
  .service-copy > p:not(.service-moment) { max-width: 330px; }
  .service-visual { right: 20px; bottom: 20px; width: calc(100% - 40px); }
  .principles { padding: 68px 16px; }
  .principle-card { min-height: 420px; padding: 25px 22px; }
  .principle-card h3 { margin-top: 68px; font-size: 35px; }
  .story-timeline { grid-template-columns: 1fr; }
  .story-timeline article { min-height: 190px; }
  .story-timeline h3 { margin-top: 48px; }
  .statement { padding: 76px 16px; }
  .statement-orbit { grid-template-columns: 1fr; gap: 9px; margin-top: 54px; }
  .contact-grid { border: 0; }
  .contact-grid > article { border-left: 1px solid var(--ink); }
  .location-content,
  .inquiry-card { padding: 22px 19px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .location-meta { grid-template-columns: 1fr; }
  .closing { padding: 76px 16px; }
  .closing-actions { flex-direction: column; max-width: 330px; margin-right: auto; margin-left: auto; }
  .site-footer { padding: 45px 18px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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